Spaces:
Runtime error
Runtime error
Aurélie GABU commited on
Commit ·
0dfaafc
1
Parent(s): 1e09903
test: add init sanity chek test and requirement.txt updated
Browse files- requirements.txt +6 -0
- tests/__init__.py +0 -0
- tests/test_sanity.py +2 -0
requirements.txt
CHANGED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
colorama==0.4.6
|
| 2 |
+
iniconfig==2.3.0
|
| 3 |
+
packaging==25.0
|
| 4 |
+
pluggy==1.6.0
|
| 5 |
+
Pygments==2.19.2
|
| 6 |
+
pytest==9.0.2
|
tests/__init__.py
ADDED
|
File without changes
|
tests/test_sanity.py
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
def test_sanity():
|
| 2 |
+
assert 1 + 1 == 2
|