File tree 3 files changed +22
-11
lines changed
3 files changed +22
-11
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ dependencies:
8
8
- qtpy >=2
9
9
- pytables
10
10
- matplotlib
11
- - pytest>=3.5
11
+ - pytest >=6 # for configuring pytest via pyproject.toml
Original file line number Diff line number Diff line change
1
+ [tool .pytest .ini_options ]
2
+ minversion = " 6.0"
3
+ testpaths = [
4
+ " larray_editor"
5
+ ]
6
+ addopts = [
7
+ " -v" ,
8
+ " --doctest-modules" ,
9
+ # this test is not automation-friendly
10
+ " --ignore=larray_editor/tests/test_api_larray.py" ,
11
+ # this test cannot be run with pytest (must be run from within PyCharm)
12
+ " --ignore=larray_editor/tests/run_with_console.py" ,
13
+ # "--cov",
14
+ ]
15
+
16
+ filterwarnings = [
17
+ # turn warnings into errors (unless they are explicitly handled in tests or ignored here)
18
+ " error" ,
19
+ ]
20
+
21
+
1
22
[tool .ruff ]
2
23
# Enable Pyflakes `E` and `F` codes by default.
3
24
select = [" E" , " F" ]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments