Spaces:
Build error
Build error
Commit
·
ce7a721
1
Parent(s):
41a1a3d
Upload tox.ini
Browse files
tox.ini
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[tox]
|
| 2 |
+
envlist = env1
|
| 3 |
+
skipsdist = true
|
| 4 |
+
|
| 5 |
+
[testenv]
|
| 6 |
+
install_command = pip install {opts} {packages}
|
| 7 |
+
basepython= python3.8
|
| 8 |
+
|
| 9 |
+
[testenv:env1]
|
| 10 |
+
deps =
|
| 11 |
+
-rrequirements.txt
|
| 12 |
+
|
| 13 |
+
setenv =
|
| 14 |
+
PYTHONPATH=.
|
| 15 |
+
|
| 16 |
+
commands =
|
| 17 |
+
black Diabeties_Detect.py
|
| 18 |
+
python Diabeties_Detect.py
|
| 19 |
+
pytest tests
|