diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e5ea36bc..2c8b775d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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