Browse Source

ci: include py3.9 + pypi no cov

pull/288/merge
Rossen Georgiev 4 years ago
committed by Rossen
parent
commit
2d0b12d12a
  1. 23
      .github/workflows/testing_initiative.yml
  2. 10
      Makefile
  3. 1
      setup.py

23
.github/workflows/testing_initiative.yml

@ -32,12 +32,15 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8] python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
# exclude: no-coverage: [0]
# - os: macos-latest include:
# python-version: 3.8 - os: ubuntu-latest
# - os: windows-latest python-version: pypy-2.7
# python-version: 3.6 no-coverage: 1
- os: ubuntu-latest
python-version: pypy-3.6
no-coverage: 1
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python Env - name: Set up Python Env
@ -50,9 +53,13 @@ jobs:
run: | run: |
make init make init
- name: Run Tests - name: Run Tests
env:
NOCOV: ${{ matrix.no-coverage }}
run: | run: |
make test make test
- name: Upload to Coveralls - name: Upload to Coveralls
# pypy + concurrenct=gevent not supported in coveragepy. See https://github.com/nedbat/coveragepy/issues/560
if: matrix.no-coverage == 0
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_PARALLEL: true COVERALLS_PARALLEL: true
@ -90,6 +97,8 @@ jobs:
- name: Display Python version - name: Display Python version
run: python -c "import sys; print(sys.version)" run: python -c "import sys; print(sys.version)"
- name: Install dependencies - name: Install dependencies
run: make init run: |
make init
make init_docs
- name: Build Docs - name: Build Docs
run: make docs run: make docs

10
Makefile

@ -24,15 +24,21 @@ export HELPBODY
help: help:
@echo "$$HELPBODY" @echo "$$HELPBODY"
init: init_docs init:
pip install -r dev_requirements.txt pip install -r dev_requirements.txt
init_docs: init_docs:
pip install sphinx==1.8.5 sphinx_rtd_theme pip install sphinx==1.8.5 sphinx_rtd_theme
COVOPTS = --cov-config .coveragerc --cov=steam
ifeq ($(NOCOV), 1)
COVOPTS =
endif
test: test:
coverage erase coverage erase
PYTHONHASHSEED=0 pytest --tb=short --cov-config .coveragerc --cov=steam tests PYTHONHASHSEED=0 pytest --tb=short $(COVOPTS) tests
webauth_gen: webauth_gen:
rm -f vcr/webauth* rm -f vcr/webauth*

1
setup.py

@ -53,6 +53,7 @@ setup(
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python :: Implementation :: PyPy',
], ],
keywords='valve steam steamid api webapi steamcommunity', keywords='valve steam steamid api webapi steamcommunity',

Loading…
Cancel
Save