Skip to content

Commit 9d099f0

Browse files
committed
Exclude nbdime tests on python 3.9
1 parent d3ff717 commit 9d099f0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ jobs:
3535
- name: Install package with test dependencies
3636
run: pip install .[test]
3737

38-
- name: Test installation
38+
- 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" }}
3944
run: pytest -v
4045

4146
- name: Test flake8

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ xfail_strict = true
6363
log_cli_level = "info"
6464
addopts = [
6565
"--nbval",
66-
"--nbdime",
6766
"--ignore=tests/notebooks/.ipynb_checkpoints/*",
6867
]
6968
testpaths = [

0 commit comments

Comments
 (0)