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 915660e commit 5b1c050Copy full SHA for 5b1c050
.github/workflows/ci.yml
@@ -21,14 +21,12 @@ jobs:
21
python-version: ${{ matrix.python-version }}
22
- name: Update pip and setuptools
23
run: pip install --upgrade pip setuptools
24
+ - name: Setup environment
25
+ run: pip install -e .[test]
26
- name: Run doctests
- run: |
- pip install -e .[test]
27
- pytest --doctest-modules --ignore=causalpy/tests/ causalpy/
+ run: pytest --doctest-modules --ignore=causalpy/tests/ causalpy/
28
- name: Run tests
29
30
31
- pytest --cov-report=xml --no-cov-on-fail
+ run: pytest --cov-report=xml --no-cov-on-fail
32
- name: Upload coverage to Codecov
33
uses: codecov/codecov-action@v4
34
with:
0 commit comments