From 104d5dd97b207cf59f47f1c72b408ed4b1e6f770 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Fri, 20 Nov 2020 19:55:54 +0000 Subject: [PATCH] Move builds to GitHub actions --- .github/workflows/tests.yml | 52 +++++++++++++++++++++++++++++++++++++ .travis.yml | 22 ---------------- README.rst | 7 +++-- tox.ini | 19 +++++++------- 4 files changed, 66 insertions(+), 34 deletions(-) create mode 100644 .github/workflows/tests.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..52e8916 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,52 @@ +name: build +on: + push: + branches: + - master + pull_request: + branches: + - master +jobs: + lint: + name: lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + - run: python -m pip install --upgrade pip wheel + - run: pip install tox tox-gh-actions + - run: tox -eflake8 + - run: tox -edocs + tests: + name: tests + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + python: ['3.6', '3.7', '3.8', '3.9', 'pypy3'] + exclude: + # pypy3 currently fails to run on Windows + - os: windows-latest + python: pypy3 + # the loop fails to close in the Mac version of 3.9 + - os: macos-latest + python: '3.9' + fail-fast: false + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python }} + - run: python -m pip install --upgrade pip wheel + - run: pip install tox tox-gh-actions + - run: tox + coverage: + name: coverage + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + - run: python -m pip install --upgrade pip wheel + - run: pip install tox tox-gh-actions codecov + - run: tox + - run: codecov diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 06c2874..0000000 --- a/.travis.yml +++ /dev/null @@ -1,22 +0,0 @@ -dist: xenial -language: python -matrix: - include: - - python: 3.8 - env: TOXENV=flake8 - - python: 3.5 - env: TOXENV=py35 - - python: 3.6 - env: TOXENV=py36 - - python: 3.7 - env: TOXENV=py37 - - python: 3.8 - env: TOXENV=py38 - - python: pypy3 - env: TOXENV=pypy3 - - python: 3.8 - env: TOXENV=docs -install: - - pip install tox -script: - - tox diff --git a/README.rst b/README.rst index f16648a..c1d462b 100644 --- a/README.rst +++ b/README.rst @@ -1,8 +1,11 @@ python-socketio =============== -.. image:: https://travis-ci.org/miguelgrinberg/python-socketio.svg?branch=master - :target: https://travis-ci.org/miguelgrinberg/python-socketio +.. image:: https://github.com/miguelgrinberg/python-socketio/workflows/build/badge.svg + :target: https://github.com/miguelgrinberg/python-socketio/actions + +.. image:: https://codecov.io/gh/miguelgrinberg/python-socketio/branch/master/graph/badge.svg + :target: https://codecov.io/gh/miguelgrinberg/python-socketio Python implementation of the `Socket.IO`_ realtime client and server. diff --git a/tox.ini b/tox.ini index 01ade57..33094b5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,15 @@ [tox] -envlist=flake8,py35,py36,py37,py38,pypy3,docs +envlist=flake8,py36,py37,py38,py39,pypy3,docs skip_missing_interpreters=True +[gh-actions] +python = + 3.6: py36 + 3.7: py37 + 3.8: py38 + 3.9: py39 + pypy3: pypy3 + [testenv] commands= pytest -p no:logging --cov=socketio --cov-branch --cov-report=term-missing @@ -9,15 +17,6 @@ deps= pytest pytest-cov mock -basepython = - flake8: python3.8 - py35: python3.5 - py36: python3.6 - py37: python3.7 - py38: python3.8 - pypy3: pypy3 - docs: python3.8 - coverage: python3.8 [testenv:flake8] deps=