File tree 2 files changed +19
-2
lines changed
2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 8
8
.coverage
9
9
* .pyc
10
10
htmlcov
11
- env
11
+ env
12
+ .vscode
Original file line number Diff line number Diff line change @@ -18,13 +18,29 @@ lint.black:
18
18
run: pip install black==22.3.0
19
19
run: black --check .
20
20
21
- test.unit :
21
+ test.unit : test.unit_3_8 test.unit_3_9 test.unit_3_10
22
+
23
+ test.unit_3_8 :
22
24
@$(dkr )
23
25
instance: python:3.8-slim
24
26
run: pip install -r requirements.txt
25
27
run: pip install -r requirements.dev.txt
26
28
run: nose2 -v --with-coverage --coverage-report term
27
29
30
+ test.unit_3_9 :
31
+ @$(dkr )
32
+ instance: python:3.9-slim
33
+ run: pip install -r requirements.txt
34
+ run: pip install -r requirements.dev.txt
35
+ run: nose2 -v --with-coverage --coverage-report term
36
+
37
+ test.unit_3_10 :
38
+ @$(dkr )
39
+ instance: python:3.10-slim
40
+ run: pip install -r requirements.txt
41
+ run: pip install -r requirements.dev.txt
42
+ run: nose2 -v --with-coverage --coverage-report term
43
+
28
44
dist.publish :
29
45
@$(dkr )
30
46
instance: python:3.8-slim \
You can’t perform that action at this time.
0 commit comments