Yingtao-Zheng commited on
Commit
9fda8fe
·
1 Parent(s): ce9a840

Merge all other things coming from feature/integration

Browse files
Files changed (4) hide show
  1. .coverage +0 -0
  2. .coveragerc +23 -0
  3. pytest.ini +3 -0
  4. requirements.txt +4 -2
.coverage ADDED
Binary file (94.2 kB). View file
 
.coveragerc ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [run]
2
+ branch = True
3
+ source =
4
+ .
5
+ omit =
6
+ .venv/*
7
+ venv/*
8
+ */site-packages/*
9
+ tests/*
10
+ notebooks/*
11
+ evaluation/*
12
+ models/mlp/train.py
13
+ models/mlp/sweep.py
14
+ models/mlp/eval_accuracy.py
15
+ models/cnn/eye_attention/train.py
16
+ models\collect_features.py
17
+ [report]
18
+ show_missing = True
19
+ skip_covered = False
20
+ precision = 1
21
+ exclude_lines =
22
+ pragma: no cover
23
+ if __name__ == .__main__.:
pytest.ini ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ [pytest]
2
+ testpaths = tests
3
+ addopts = -q --cov=. --cov-report=term-missing
requirements.txt CHANGED
@@ -9,12 +9,14 @@ numpy>=1.24.0
9
  scikit-learn>=1.2.0
10
  joblib>=1.2.0
11
  torch>=2.0.0
 
12
  fastapi>=0.104.0
13
  uvicorn[standard]>=0.24.0
14
- httpx>=0.24.0
15
  aiosqlite>=0.19.0
16
  psutil>=5.9.0
17
  pydantic>=2.0.0
18
  xgboost>=2.0.0
19
  clearml>=2.0.2
20
- pytest>=7.0.0
 
 
9
  scikit-learn>=1.2.0
10
  joblib>=1.2.0
11
  torch>=2.0.0
12
+ torchvision>=0.15.0
13
  fastapi>=0.104.0
14
  uvicorn[standard]>=0.24.0
15
+ httpx>=0.27.0
16
  aiosqlite>=0.19.0
17
  psutil>=5.9.0
18
  pydantic>=2.0.0
19
  xgboost>=2.0.0
20
  clearml>=2.0.2
21
+ pytest>=9.0.0
22
+ pytest-cov>=5.0.0