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 d3ff717 commit 9d099f0Copy full SHA for 9d099f0
.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