File tree 5 files changed +10
-6
lines changed
5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- FROM python:3.10.6 -slim
1
+ FROM python:3.11.2 -slim
2
2
3
3
RUN apt-get update \
4
4
&& apt-get install curl -y \
@@ -12,3 +12,4 @@ WORKDIR /opt/analyzer
12
12
13
13
RUN pip install -r requirements.txt -r dev-requirements.txt
14
14
ENTRYPOINT ["/opt/analyzer/bin/run.sh" ]
15
+
Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ For example:
13
13
Unit tests can be run from this directory:
14
14
15
15
``` bash
16
- pylint -x
16
+ pytest -x
17
17
```
Original file line number Diff line number Diff line change 1
- pytest~=7.1 .2
2
- pytest-subtests~=0.5 .0
3
- tomli~=2.0.1
1
+ pytest~=7.2 .2
2
+ pytest-subtests~=0.10 .0
3
+ tomli>=1.1.0; python_full_version < '3.11.2'
Original file line number Diff line number Diff line change @@ -104,6 +104,8 @@ confidence=
104
104
# unused-argument,
105
105
# unused-import,
106
106
# useless-suppression
107
+ disable =trailing-whitespace,missing-final-newline
108
+
107
109
108
110
[REPORTS]
109
111
Original file line number Diff line number Diff line change 1
- pylint ~= 2.14.5
1
+ pylint >= 2.17.1
2
+ plerr ~= 3.0.0
You can’t perform that action at this time.
0 commit comments