Browse Source

Move builds to GitHub actions

pull/1118/head
Miguel Grinberg 4 years ago
parent
commit
104d5dd97b
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 52
      .github/workflows/tests.yml
  2. 22
      .travis.yml
  3. 7
      README.rst
  4. 19
      tox.ini

52
.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

22
.travis.yml

@ -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

7
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.

19
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=

Loading…
Cancel
Save