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 891d4c4 commit 79571e3Copy full SHA for 79571e3
.github/workflows/ci.yml
@@ -50,8 +50,21 @@ jobs:
50
51
- run: pip install -r requirements/testing.txt -r requirements/pyproject.txt
52
53
- - run: make test
+ - name: test with dotenv
54
+ run: make test
55
+ env:
56
+ COVERAGE_FILE: .coverage.${{ runner.os }}-py${{ matrix.python }}-with-dotenv
57
+ CONTEXT: ${{ runner.os }}-py${{ matrix.python }}-with-dotenv
58
59
+ - run: pip uninstall -y python-dotenv
60
+
61
+ - name: test without dotenv
62
63
64
+ COVERAGE_FILE: .coverage.${{ runner.os }}-py${{ matrix.python }}-without-dotenv
65
+ CONTEXT: ${{ runner.os }}-py${{ matrix.python }}-without-dotenv
66
67
+ - run: coverage combine
68
- run: coverage xml
69
70
- uses: codecov/codecov-action@v2
0 commit comments