8000 move pytest settings into pyproject.toml · matplotlib/ipympl@f596ead · GitHub
[go: up one dir, main page]

Skip to content

Commit f596ead

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

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.linting.enabled": true
3+
}

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)
0