File tree 2 files changed +5
-29
lines changed
2 files changed +5
-29
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ jobs:
204
204
205
205
- name : Run test hooks
206
206
run : |
207
- task task --verbose hooks:test
207
+ task hooks:test
208
208
209
209
- name : Run unit test virtualization-controller
210
210
run : |
Original file line number Diff line number Diff line change @@ -3,40 +3,16 @@ version: "3"
3
3
tasks :
4
4
test :
5
5
cmds :
6
- - task --verbose test:prepare
7
- - task --verbose test:run
6
+ - task test:prepare
7
+ - task test:run
8
8
- task test:clean
9
9
10
10
test:prepare :
11
11
cmds :
12
12
- |
13
- VENV=venv
14
-
15
- cat /etc/os-release
16
-
17
- # set -x
18
- echo "task prep"
19
- which python3
20
- which pip3
21
- #pip3 install virtualenv
22
-
23
- echo "==="
24
- python3 -m venv $VENV
25
- # python3 -m venv venv
26
-
27
- echo "--python3 -m venv $VENV--"
28
- ls -la $VENV/
29
- ls -la $VENV/bin/
30
-
31
- echo "--source $VENV/bin/activate--"
32
- source $VENV/bin/activate
33
-
34
- echo "--ls--"
35
- ls -la ../lib/python/
36
-
37
- echo "--pip3 -v install -r ../lib/python/requirements.txt--"
13
+ python3 -m venv .venv
14
+ source .venv/bin/activate
38
15
pip3 -v install -r ../lib/python/requirements.txt
39
-
40
16
deactivate
41
17
42
18
test:run :
You can’t perform that action at this time.
0 commit comments