Skip to content

Commit

Permalink
forked
Browse files Browse the repository at this point in the history
  • Loading branch information
leezu committed May 13, 2020
1 parent ac16f2d commit cc4e647
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,16 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --user --upgrade pip
python -m pip install --user setuptools pytest pytest-cov
python -m pip install --user setuptools pytest pytest-cov pytest-xdist
python -m pip install --upgrade cython
python -m pip install --pre --user mxnet -f https://dist.mxnet.io/python/cpu
python -m pip install --user -e .[extras]
- name: Test project
if: matrix.os == 'ubuntu-latest'
run: |
python -m pytest --forked --cov=./ --cov-report=xml --durations=50 tests/
- name: Test project
if: matrix.os != 'ubuntu-latest'
run: |
python -m pytest --cov=./ --cov-report=xml --durations=50 tests/
- name: Upload coverage to Codecov
Expand Down

0 comments on commit cc4e647

Please sign in to comment.