We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe89c30 commit 31a43e9Copy full SHA for 31a43e9
.github/workflows/test.yml
@@ -25,18 +25,9 @@ jobs:
25
pip install -U pip
26
pip install '.[dev]'
27
- uses: pre-commit/action@v2.0.3
28
- - name: Test [wrapper]
29
- if: ${{ always() }}
30
- run: |
31
- pytest test/test_wrapper.py
32
- name: Test [all]
33
run: |
34
pytest |& tee log.txt
35
- grep '^FAILED:' log.txt > fails.txt
36
- # if all failures is not raised in `test.test_wrapper`:
37
- if [ "$(grep 'test/test_wrapper' fails.txt | wc -l)" -ne "$(wc -l < fails.txt)" ]; then
+ if tail -1 log.txt | grep -q ' failed'; then
38
exit 1
39
- else
40
- echo 'All of the above failures are maybe false errors.'
41
- echo 'See: https://github.com/RDFLib/sparqlwrapper/issues/192'
42
fi
0 commit comments