Spaces:
Sleeping
Sleeping
Captain D. Ezio
commited on
Commit
·
3b43cd5
1
Parent(s):
f6945aa
Deploying issue
Browse files
Makefile
CHANGED
@@ -1,14 +1,16 @@
|
|
|
|
|
|
1 |
test:
|
2 |
@pre-commit run --all-files
|
3 |
|
4 |
install:
|
5 |
@pip3 install --upgrade pip setuptools wheel
|
6 |
-
|
7 |
-
@
|
8 |
|
9 |
run:
|
10 |
@python3 -m Powers
|
11 |
|
12 |
clean:
|
13 |
@rm -rf Powers/logs
|
14 |
-
@pyclean .
|
|
|
1 |
+
.PHONY: test install run clean
|
2 |
+
|
3 |
test:
|
4 |
@pre-commit run --all-files
|
5 |
|
6 |
install:
|
7 |
@pip3 install --upgrade pip setuptools wheel
|
8 |
+
sleep 3
|
9 |
+
@pip3 install -r requirements.txt
|
10 |
|
11 |
run:
|
12 |
@python3 -m Powers
|
13 |
|
14 |
clean:
|
15 |
@rm -rf Powers/logs
|
16 |
+
@pyclean .
|