Skip to content

Commit 3697724

Browse files
committed
Swapped out green for pytest
1 parent 5ca29cf commit 3697724

File tree

2 files changed

+19
-10
lines changed

2 files changed

+19
-10
lines changed

lab/requirements.txt

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Dependencies for this lab
2-
Flask
3-
green
4-
coverage
5-
pylint
2+
Flask==2.3.3
3+
python-dotenv==1.0.0
4+
5+
# 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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
[green]
2-
verbose=3
3-
processes=1
4-
run-coverage=1
5-
termcolor=1
6-
# minimum-coverage=95
1+
[tool:pytest]
2+
minversion = 6.0
3+
addopts = --pspec --cov=. --disable-warnings
4+
testpaths =
5+
tests
6+
integration
77

88
[coverage:report]
99
show_missing = True

0 commit comments

Comments
 (0)