Skip to content

Commit

Permalink
Replace Travis + Appveyor with GitHub Actions (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed Nov 11, 2020
1 parent c9ddb87 commit c7ca6af
Show file tree
Hide file tree
Showing 9 changed files with 59 additions and 182 deletions.
38 changes: 0 additions & 38 deletions .ci/appveyor.yml

This file was deleted.

4 changes: 0 additions & 4 deletions .ci/deploy.linux.sh

This file was deleted.

4 changes: 0 additions & 4 deletions .ci/deploy.osx.sh

This file was deleted.

4 changes: 0 additions & 4 deletions .ci/deps.linux.sh

This file was deleted.

11 changes: 0 additions & 11 deletions .ci/deps.osx.sh

This file was deleted.

47 changes: 0 additions & 47 deletions .ci/run_with_env.cmd

This file was deleted.

35 changes: 35 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,35 @@
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: [2.7, 3.5, 3.6, 3.7, pypy2, 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
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
71 changes: 0 additions & 71 deletions .travis.yml

This file was deleted.

27 changes: 24 additions & 3 deletions tox.ini
@@ -1,18 +1,39 @@
[tox]
envlist = py27, pypy, py34, py35, py36, py37, pypy3, py27-cdecimal
envlist =
py27
py27-cdecimal
pypy2
py35
py36
py37
py38
py39
pypy3

[testenv]
deps =
pytest==4.3.1;python_version<"3.5"
pytest==6.1.2;python_version>="3.5"
pytest-cov
cdecimal: m3-cdecimal
cdecimal: m3-cdecimal;sys_platform != 'win32'
freezegun==0.3.12
backports.zoneinfo;python_version>"3.6" and python_version<"3.9"
tzdata;sys_platform == 'win32'
whitelist_externals = make
commands = make clean-cldr test
commands = make clean-cldr test-cov
passenv = PYTHON_TEST_FLAGS

[gh-actions]
python =
pypy2: pypy2
pypy3: pypy3
2.7: py27
3.5: py35
3.6: py36
3.7: py37
3.8: py38
3.9: py39

[pep8]
ignore = E501,E731,W503

Expand Down

0 comments on commit c7ca6af

Please sign in to comment.