summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAlexandre Gramfort <alexandre.gramfort@m4x.org>2020-04-21 12:03:44 +0200
committerAlexandre Gramfort <alexandre.gramfort@m4x.org>2020-04-21 12:03:44 +0200
commit8497cd523085ea69d949a0de67db252b36a81d8e (patch)
tree392e93fc191082057389cdba97800e4b3c38a510 /.github
parent5c88642a27e6c330a5c795898c0de7f3b4c0cd8d (diff)
run tests in GH actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pythonpackage.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml
index d728edd..d60acd2 100644
--- a/.github/workflows/pythonpackage.yml
+++ b/.github/workflows/pythonpackage.yml
@@ -29,10 +29,18 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
+ pip install flake8 pytest "pytest-cov<2.6" codecov
+ pip install -U "sklearn"
- name: Lint with flake8
run: |
- pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
+ - name: Run tests
+ run: |
+ pip install .
+ python -m pytest -v test/ ot/ --doctest-modules --ignore ot/gpu/ --cov=ot
+ - name: Upload codecov
+ run: |
+ codecov