Skip to content

Commit

Permalink
Use newer node action for github
Browse files Browse the repository at this point in the history
  • Loading branch information
tnipen committed Mar 11, 2024
1 parent 75b509a commit ee38c04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
python-version: [3.7]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
11 changes: 4 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py35, py36, py37
envlist = py37, py310

[testenv]
# set the matplitlib backend to one that does not require the xserver
Expand All @@ -8,11 +8,8 @@ passenv =
TRAVIS
TRAVIS_*

deps =
nose
pep8
coveralls
deps =.[test]

commands =
nosetests -v --with-coverage --cover-erase --cover-package=verif
coverage run --source verif -m unittest discover
verif examples/raw.txt examples/kf.txt -m mae -f test.png
python {toxinidir}/run_coveralls.py

0 comments on commit ee38c04

Please sign in to comment.