Skip to content

Commit 10dd9f9

Browse files
committed
chore: update circleci config
1 parent 13d9920 commit 10dd9f9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
docker:
77
# specify the version you desire here
88
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
9-
- image: circleci/python:3.9.2
9+
- image: cimg/python:3.12.8
1010

1111
# Specify service dependencies here if necessary
1212
# CircleCI maintains a library of pre-built images
@@ -33,7 +33,7 @@ jobs:
3333
python3 -m venv venv
3434
. venv/bin/activate
3535
pip install -r requirements.txt
36-
sudo pip install codecov
36+
pip install codecov setuptools
3737
3838
- run:
3939
name: install openjdk
@@ -55,7 +55,9 @@ jobs:
5555
5656
- run:
5757
name: coverage report
58-
command: codecov
58+
command: |
59+
. venv/bin/activate
60+
python -m codecov
5961
6062
- store_artifacts:
6163
path: test-reports

0 commit comments

Comments
 (0)