-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub Actions for matrix of Pythons and OSes, coverage, docs, an… (
#492) * Add GitHub Actions for matrix of Pythons and OSes, coverage, docs, lint, and functional3 tests * Remove travis * Bump coverage, docs, lint from 3.6 to 3.8 * Bump base Python from 3.6 to 3.8 * Move pyramid into proper dependency extra * Python 3.5 is EOL, remove support. Add 3.9 support. Co-authored-by: Sydo Luciani <[email protected]>
- Loading branch information
1 parent
622ed45
commit 7ada53d
Showing
4 changed files
with
127 additions
and
74 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,117 @@ | ||
name: Build and test | ||
|
||
on: | ||
# Build only on pushes to master or one of the release branches | ||
push: | ||
branches: | ||
- master | ||
- "[0-9].[0-9]+-branch" | ||
tags: | ||
# Build pull requests | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
py: | ||
- "3.6" | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
- "pypy3" | ||
os: | ||
- "ubuntu-latest" | ||
- "windows-latest" | ||
- "macos-latest" | ||
architecture: | ||
- x64 | ||
- x86 | ||
include: | ||
# Only run coverage on ubuntu-latest, except on pypy3 | ||
- os: "ubuntu-latest" | ||
nosetests-args: "--with-xunit" | ||
- os: "ubuntu-latest" | ||
py: "pypy3" | ||
nosetests-args: "" | ||
exclude: | ||
# Linux and macOS don't have x86 python | ||
- os: "ubuntu-latest" | ||
architecture: x86 | ||
- os: "macos-latest" | ||
architecture: x86 | ||
# PyPy3 on Windows doesn't seem to work | ||
- os: "windows-latest" | ||
py: "pypy3" | ||
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}" | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.py }} | ||
architecture: ${{ matrix.architecture }} | ||
- run: pip install tox | ||
- name: Running tox | ||
run: tox -e py -- ${{ matrix.nosetests-args }} | ||
functional3: | ||
runs-on: ubuntu-latest | ||
name: Functional web tests | ||
env: | ||
DISPLAY: ":99" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
architecture: x64 | ||
- name: Install requirements | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install firefox firefox-geckodriver gettext gettext-base xvfb | ||
pip install tox | ||
- name: Run functional web tests | ||
run: | | ||
Xvfb :99 & | ||
tox -e functional3 | ||
coverage: | ||
runs-on: ubuntu-latest | ||
name: Validate coverage | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
architecture: x64 | ||
- run: | | ||
pip install tox | ||
tox -e py39-cover,coverage | ||
docs: | ||
runs-on: ubuntu-latest | ||
name: Build the documentation | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
architecture: x64 | ||
- run: | | ||
pip install tox | ||
tox -e docs | ||
lint: | ||
runs-on: ubuntu-latest | ||
name: Lint the package | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
architecture: x64 | ||
- run: | | ||
pip install tox | ||
tox -e lint |
This file was deleted.
Oops, something went wrong.
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