File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 6
6
jobs :
7
7
tests :
8
8
docker :
9
- - image : ' cimg/python:3.8 '
9
+ - image : ' cimg/python:3.10 '
10
10
environment :
11
11
TOX_POSARGS : ' '
12
12
- image : ' docker.elastic.co/elasticsearch/elasticsearch:7.14.0'
@@ -19,12 +19,12 @@ jobs:
19
19
- run : git submodule sync
20
20
- run : git submodule update --init
21
21
- run : pip install --user tox
22
- - run : tox -e py38
22
+ - run : tox -e py310
23
23
- codecov/upload
24
24
25
25
tests-embedapi :
26
26
docker :
27
- - image : ' cimg/python:3.8 '
27
+ - image : ' cimg/python:3.10 '
28
28
steps :
29
29
- checkout
30
30
- run : git submodule sync
34
34
35
35
checks :
36
36
docker :
37
- - image : ' cimg/python:3.8 '
37
+ - image : ' cimg/python:3.10 '
38
38
environment :
39
39
NODE_VERSION : 10.17.0
40
40
steps :
Original file line number Diff line number Diff line change 1
- FROM ubuntu:20 .04
1
+ FROM ubuntu:22 .04
2
2
3
3
ARG GITHUB_USER
4
4
ARG GITHUB_TOKEN
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ save some work while typing docker compose commands. This section explains these
133
133
``inv docker.test ``
134
134
Runs all the test suites inside the container.
135
135
136
- * ``--arguments `` will pass arguments to Tox command (e.g. ``--arguments "-e py38 -- -k test_api" ``)
136
+ * ``--arguments `` will pass arguments to Tox command (e.g. ``--arguments "-e py310 -- -k test_api" ``)
137
137
138
138
``inv docker.pull ``
139
139
Downloads and tags all the Docker images required for builders.
Original file line number Diff line number Diff line change @@ -46,16 +46,16 @@ To target a specific environment:
46
46
47
47
.. prompt :: bash
48
48
49
- tox -e py38
49
+ tox -e py310
50
50
51
51
The ``tox `` configuration has the following environments configured. You can
52
52
target a single environment to limit the test suite:
53
53
54
- py38
55
- Run our test suite using Python 3.8
54
+ py310
55
+ Run our test suite using Python 3.10
56
56
57
- py38 -debug
58
- Same as ``py38 ``, but there are some useful debugging tools available in the environment.
57
+ py310 -debug
58
+ Same as ``py310 ``, but there are some useful debugging tools available in the environment.
59
59
60
60
lint
61
61
Run code linting using `Prospector `_. This currently runs `pylint `_,
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
minversion =2.9.0
3
- envlist = py38 ,lint,docs
3
+ envlist = py310 ,lint,docs
4
4
skipsdist = True
5
5
6
6
[testenv]
You can’t perform that action at this time.
0 commit comments