Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 033d3e3

Browse files
committed
move pytest settings into pyproject.toml
1 parent 4af3ab4 commit 033d3e3

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ js/*.tgz
1313

1414
# OS X
1515
.DS_Store
16+
17+
# vscode
18+
.vscode/

pyproject.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11
[build-system]
22
requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0,==3.*", "setuptools>=40.8.0", "wheel"]
33
build-backend = "setuptools.build_meta"
4+
5+
6+
[tool.pytest.ini_options]
7+
testpaths = [
8+
"test-notebooks",
9+
"examples",
10+
]
11+
norecursedirs = [
12+
"node_modules",
13+
".ipynb_checkpoints",
14+
]
15+
addopts = "--nbval --current-env"

pytest.ini

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)