Spaces:
Sleeping
Sleeping
Gruhit Patel
commited on
Commit
·
f788777
1
Parent(s):
652a803
Modified action5
Browse files- .github/workflows/test.yml +3 -2
- requirement.txt +5 -0
.github/workflows/test.yml
CHANGED
@@ -11,7 +11,7 @@ jobs:
|
|
11 |
|
12 |
steps:
|
13 |
- uses: actions/checkout@v2
|
14 |
-
|
15 |
- uses: actions/setup-python@v2
|
16 |
with:
|
17 |
python-version: '3.9'
|
@@ -21,4 +21,5 @@ jobs:
|
|
21 |
python -m pip install --upgrade pip
|
22 |
pip install -r requirement.txt
|
23 |
|
24 |
-
- run:
|
|
|
|
11 |
|
12 |
steps:
|
13 |
- uses: actions/checkout@v2
|
14 |
+
|
15 |
- uses: actions/setup-python@v2
|
16 |
with:
|
17 |
python-version: '3.9'
|
|
|
21 |
python -m pip install --upgrade pip
|
22 |
pip install -r requirement.txt
|
23 |
|
24 |
+
- run: |
|
25 |
+
pytest
|
requirement.txt
CHANGED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
fastapi
|
2 |
+
uvicorn[standard]
|
3 |
+
pytest
|
4 |
+
httpx
|
5 |
+
numpy
|