We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea3647d commit 110ae32Copy full SHA for 110ae32
2 files changed
.github/workflows/unit_tests.yml
@@ -28,7 +28,7 @@ jobs:
28
29
- name: Test with pytest and coverage
30
run: |
31
- pytest ./tests/unit_tests --cov=datacrunch
+ pytest --cov=datacrunch
32
33
- name: 'Upload coverage to Codecov'
34
uses: codecov/codecov-action@v1
tests/integration_tests/test_volumes.py
@@ -1,7 +1,11 @@
1
+import os
2
import pytest
3
from datacrunch.datacrunch import DataCrunchClient
4
5
+IN_GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS") == "true"
6
7
+
8
+@pytest.mark.skipif(IN_GITHUB_ACTIONS, reason="Test doesn't work in Github Actions.")
9
@pytest.mark.withoutresponses
10
class TestVolumes():
11
0 commit comments