-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated dependencies & move to GH Actions
Removed nosetests for simplicity and migrate to GitHub Action as TravisCI is now no longer maintained for OSS projects.
- Loading branch information
Jonathan Huot
committed
Aug 22, 2023
1 parent
fe4cbca
commit 309000e
Showing
4 changed files
with
33 additions
and
16 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,20 @@ | ||
name: GitHub Python Build | ||
run-name: ${{ github.actor }} build and unittest | ||
on: [push] | ||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
python: ["3.8", "3.9", "3.10", "3.11"] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Python ${{ matrix.python }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
- name: Install prereq | ||
run: pip install tox coveralls | ||
- name: Run python tests | ||
run: tox -e ${{ env.python }} |
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,7 +1,7 @@ | ||
bottle==0.12.13 | ||
certifi==2017.7.27.1 | ||
chardet==3.0.4 | ||
idna==2.6 | ||
oauthlib==3.0.0 | ||
requests==2.18.4 | ||
urllib3==1.22 | ||
bottle==0.12.25 | ||
certifi==2023.7.22 | ||
charset-normalizer==3.2.0 | ||
idna==3.4 | ||
oauthlib==3.2.2 | ||
requests==2.31.0 | ||
urllib3==2.0.4 |
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,18 +1,12 @@ | ||
[tox] | ||
envlist = py36,py37 | ||
envlist = py38,py39,py310,py311 | ||
|
||
[testenv] | ||
deps = | ||
nose | ||
nose-timer | ||
-rrequirements.txt | ||
coverage | ||
commands = | ||
coverage erase | ||
nosetests --with-timer | ||
coverage run --append -m nose | ||
coverage run --append -m unittest | ||
coverage report | ||
coverage html -d htmlcov-{envname} | ||
|
||
[tox:jenkins] | ||
envlist = py36 |