Thanks to visit codestin.com Credit goes to github.com
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 2bd414e commit 6127506Copy full SHA for 6127506
2 files changed
.github/workflows/main.yml
@@ -35,7 +35,12 @@ jobs:
35
- name: Install package with test dependencies
36
run: pip install .[test]
37
38
- - name: Test installation
+ - name: Test installation with nbdime
39
+ if: ${{ matrix.python-version != "3.9" }}
40
+ run: pytest -v --nbdime
41
+
42
+ - name: Test installation without nbdime
43
+ if: ${{ matrix.python-version == "3.9" }}
44
run: pytest -v
45
46
- name: Test flake8
pyproject.toml
@@ -63,7 +63,6 @@ xfail_strict = true
63
log_cli_level = "info"
64
addopts = [
65
"--nbval",
66
- "--nbdime",
67
"--ignore=tests/notebooks/.ipynb_checkpoints/*",
68
]
69
testpaths = [
0 commit comments