Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove travis #241

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

5 changes: 1 addition & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
ThriftPy2
============

.. image:: https://travis-ci.com/Thriftpy/thriftpy2.svg?branch=develop
:target: https://travis-ci.com/Thriftpy/thriftpy2

.. image:: https://img.shields.io/codecov/c/github/Thriftpy/thriftpy2.svg
:target: https://codecov.io/gh/Thriftpy/thriftpy2

Expand Down Expand Up @@ -204,7 +201,7 @@ Contribute

2. Write a test which shows a bug was fixed or the feature works as expected.

3. Make sure ``travis-ci`` or ``tox`` tests succeed.
3. Make sure ``tox`` tests succeed.

4. Send pull request.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ Contribute

2. Write a test which shows a bug was fixed or the feature works as expected.

3. Make sure travis-ci test succeed.
3. Make sure ``tox`` test succeed.

4. Send pull request.

Expand Down
2 changes: 0 additions & 2 deletions tests/test_socket.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,6 @@ def test_close__close_OSError(self):
assert server_socket.sock is None


@pytest.mark.skipif(os.getenv('TRAVIS', '') == 'true',
reason='Travis CI dose not support IPv6')
def test_inet6_socket():
server_socket = TServerSocket(host="::1", port=12345,
socket_family=socket.AF_INET6)
Expand Down
Loading