Spaces:
Sleeping
Sleeping
Update Makefile
Browse files
Makefile
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
install:
|
2 |
python -m pip install --upgrade pip &&\
|
3 |
python -m pip install -r requirements.txt
|
|
|
4 |
|
5 |
test:
|
6 |
python -m pytest -vv test_app.py
|
@@ -11,4 +12,4 @@ format:
|
|
11 |
lint:
|
12 |
python -m pylint --disable=R,C app.py
|
13 |
|
14 |
-
all: install lint test format
|
|
|
1 |
install:
|
2 |
python -m pip install --upgrade pip &&\
|
3 |
python -m pip install -r requirements.txt
|
4 |
+
python -m pip install tf-keras
|
5 |
|
6 |
test:
|
7 |
python -m pytest -vv test_app.py
|
|
|
12 |
lint:
|
13 |
python -m pylint --disable=R,C app.py
|
14 |
|
15 |
+
all: install lint test format
|