File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ pipeline {
59
59
steps {
60
60
script {
61
61
sh ' pip install --user -r docker/dev/requirements.dev.txt'
62
+ sh ' pip install --user -r docker/requirements.txt'
62
63
sh ' flake8 mdbackup'
63
64
sh ' flake8 tests'
64
65
sh ' coverage run --source=mdbackup --branch -m xmlrunner discover -s tests -p \' *tests*.py\' -o tests/.report'
Original file line number Diff line number Diff line change 1
1
FROM python:3.7-alpine
2
2
3
- COPY ./docker/dev/requirements.dev.txt /requirements.txt
4
- RUN pip install -r requirements.txt
3
+ COPY ./docker/dev/requirements.dev.txt /r1.txt
4
+ COPY ./docker/requirements.txt /r2.txt
5
+ RUN pip install -r r1.txt && pip install -r r2.txt
Original file line number Diff line number Diff line change @@ -3,6 +3,4 @@ flake8-import-order
3
3
pep8-naming
4
4
flake8-commas
5
5
coverage
6
- unittest-xml-reporting
7
- pyyaml
8
- xattr
6
+ unittest-xml-reporting
Original file line number Diff line number Diff line change 1
1
python-magic == 0.4.15
2
- boto3 == 1.9.183
3
- b2sdk == 0.1.8
2
+ boto3 == 1.9.248
3
+ b2sdk == 1.0.0
4
4
PyDrive == 1.3.1
5
- pyyaml == 5.1.1
6
5
paramiko == 2.6.0
7
6
requests == 2.22.0
8
- urllib3 == 1.25.3
7
+ urllib3 == 1.25.6
8
+ pyyaml == 5.1.2
9
+ xattr == 0.9.6
You can’t perform that action at this time.
0 commit comments