-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from fschulze/update
Update testing
- Loading branch information
Showing
5 changed files
with
86 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
name: Build and test | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
py: | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
- "3.12" | ||
- "pypy-3.8" | ||
os: | ||
- "ubuntu-latest" | ||
- "windows-latest" | ||
- "macos-latest" | ||
architecture: | ||
- x64 | ||
- x86 | ||
|
||
exclude: | ||
# Linux and macOS don't have x86 python | ||
- os: "ubuntu-latest" | ||
architecture: x86 | ||
- os: "macos-latest" | ||
architecture: x86 | ||
|
||
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}" | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.py }} | ||
architecture: ${{ matrix.architecture }} | ||
- run: pip install tox | ||
- name: Running tox | ||
run: tox -e py | ||
coverage: | ||
runs-on: ubuntu-latest | ||
name: Validate coverage | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup python 3.8 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
architecture: x64 | ||
- run: pip install tox | ||
- run: tox -e py38-cover |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,20 @@ | ||
[tox] | ||
envlist = | ||
py26,py27,py32,pypy,cover | ||
envlist = | ||
py27,py37,py38,py39,py310,py311,py312,pypy3,py38-cover | ||
|
||
[testenv] | ||
commands = | ||
commands = | ||
python setup.py test -q | ||
deps = | ||
pyramid | ||
beaker | ||
|
||
[testenv:cover] | ||
basepython = | ||
python2.6 | ||
commands = | ||
[testenv:py38-cover] | ||
commands = | ||
python setup.py nosetests --with-xunit --with-xcoverage | ||
deps = | ||
pyramid | ||
beaker | ||
nose | ||
coverage==3.4 | ||
coverage | ||
nosexcover | ||
|
||
# we separate coverage into its own testenv because a) "last run wins" wrt | ||
# cobertura jenkins reporting and b) pypy and jython can't handle any | ||
# combination of versions of coverage and nosexcover that i can find. | ||
# coverage==3.4 is required by nosexcover. | ||
|