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 5ca29cf commit 3697724Copy full SHA for 3697724
lab/requirements.txt
@@ -1,5 +1,14 @@
1
# Dependencies for this lab
2
-Flask
3
-green
4
-coverage
5
-pylint
+Flask==2.3.3
+python-dotenv==1.0.0
+
+# Testing dependencies
6
+pytest==7.4.0
7
+pytest-pspec==0.0.4
8
+pytest-cov==4.1.0
9
10
+# Code quality
11
+pylint==2.17.5
12
+flake8==6.1.0
13
+black==23.7.0
14
+coverage==7.3.0
lab/setup.cfg
@@ -1,9 +1,9 @@
-[green]
-verbose=3
-processes=1
-run-coverage=1
-termcolor=1
-# minimum-coverage=95
+[tool:pytest]
+minversion = 6.0
+addopts = --pspec --cov=. --disable-warnings
+testpaths =
+ tests
+ integration
[coverage:report]
show_missing = True
0 commit comments