-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace Travis + Appveyor with GitHub Actions (WIP)
- Loading branch information
Showing
10 changed files
with
58 additions
and
199 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-18.04, windows-2019, macos-10.15] | ||
python-version: [3.6, 3.7, 3.8, 3.9, pypy3] | ||
exclude: | ||
- os: windows-2019 | ||
python-version: pypy3 | ||
# TODO: Remove this; see: | ||
# https://github.com/actions/setup-python/issues/151 | ||
# https://github.com/tox-dev/tox/issues/1704 | ||
# https://foss.heptapod.net/pypy/pypy/-/issues/3331 | ||
env: | ||
BABEL_CLDR_NO_DOWNLOAD_PROGRESS: "1" | ||
BABEL_CLDR_QUIET: "1" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip setuptools wheel | ||
python -m pip install tox tox-gh-actions==2.1.0 | ||
- name: Run test via Tox | ||
run: tox --skip-missing-interpreters | ||
- uses: codecov/codecov-action@v1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
[tox] | ||
envlist = py27, pypy, py34, py35, py36, py37, pypy3, py27-cdecimal | ||
envlist = | ||
py{36,37,38,39} | ||
pypy3 | ||
|
||
[testenv] | ||
deps = | ||
pytest==4.3.1;python_version<"3.5" | ||
pytest==6.1.2;python_version>="3.5" | ||
pytest | ||
pytest-cov | ||
cdecimal: m3-cdecimal | ||
freezegun==0.3.12 | ||
backports.zoneinfo;python_version>"3.6" and python_version<"3.9" | ||
backports.zoneinfo;python_version<"3.9" | ||
tzdata;sys_platform == 'win32' | ||
whitelist_externals = make | ||
commands = make clean-cldr test | ||
passenv = PYTHON_TEST_FLAGS | ||
commands = make clean-cldr test-cov | ||
passenv = | ||
BABEL_* | ||
PYTHON_* | ||
|
||
[pep8] | ||
ignore = E501,E731,W503 | ||
|
||
[flake8] | ||
ignore = E501,E731,W503 | ||
[gh-actions] | ||
python = | ||
pypy3: pypy3 | ||
3.6: py36 | ||
3.7: py37 | ||
3.8: py38 | ||
3.9: py39 |