File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ services:
4
4
5
5
unit-tests-3-6 :
6
6
build :
7
- context : test
7
+ context : .
8
8
dockerfile : test/Dockerfile_3.6
9
9
volumes :
10
10
- .:/undictify
@@ -13,9 +13,18 @@ services:
13
13
14
14
unit-tests-3-7 :
15
15
build :
16
- context : test
16
+ context : .
17
17
dockerfile : test/Dockerfile_3.7
18
18
volumes :
19
19
- .:/undictify
20
20
working_dir : /undictify
21
21
entrypoint : ./test/install_from_local_and_run_code_checks_3_7_and_up.sh
22
+
23
+ unit-tests-3-8 :
24
+ build :
25
+ context : .
26
+ dockerfile : test/Dockerfile_3.8
27
+ volumes :
28
+ - .:/undictify
29
+ working_dir : /undictify
30
+ entrypoint : ./test/install_from_local_and_run_code_checks_3_7_and_up.sh
Original file line number Diff line number Diff line change
1
+ FROM python:3.8
2
+
3
+ RUN pip3 install --upgrade pip
4
+ RUN pip3 install pylint mypy
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -e
3
3
4
+ pip3 install --upgrade pip
4
5
pip3 install .
You can’t perform that action at this time.
0 commit comments