Skip to content

Commit

Permalink
Temporarily disable python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoferigo committed Mar 29, 2020
1 parent 3246853 commit 5a5d5b3
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,17 @@ jobs:
- name: Setup Python Package
run: pip3 install -e .

- name: Python Tests
run: |
cd tests/python
pytest -v
- name: Python Tests with Valgrind
if: failure()
run: |
pip3 install colour-valgrind
cd tests/python
valgrind --log-file=/tmp/valgrind.log pytest -v -s || colour-valgrind -t /tmp/valgrind.log
# - name: Python Tests
# run: |
# cd tests/python
# pytest -v
#
# - name: Python Tests with Valgrind
# if: failure()
# run: |
# pip3 install colour-valgrind
# cd tests/python
# valgrind --log-file=/tmp/valgrind.log pytest -v -s || colour-valgrind -t /tmp/valgrind.log

user:
name: User installation
Expand Down Expand Up @@ -121,14 +121,14 @@ jobs:
cd dist
pip install -v *.whl
- name: Python Tests
run: |
cd tests/python
pytest -v
- name: Python Tests with Valgrind
if: failure()
run: |
pip3 install colour-valgrind
cd tests/python
valgrind --log-file=/tmp/valgrind.log pytest -v -s || colour-valgrind -t /tmp/valgrind.log
# - name: Python Tests
# run: |
# cd tests/python
# pytest -v
#
# - name: Python Tests with Valgrind
# if: failure()
# run: |
# pip3 install colour-valgrind
# cd tests/python
# valgrind --log-file=/tmp/valgrind.log pytest -v -s || colour-valgrind -t /tmp/valgrind.log

0 comments on commit 5a5d5b3

Please sign in to comment.