Skip to content

Commit e681254

Browse files
committedFeb 6, 2018
#32 python
1 parent f24275d commit e681254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
command: |
6363
python3 -m venv venv
6464
. venv/bin/activate
65-
pip install -r requirements.txt
65+
python3 -m pip install -r requirements.txt
6666
coverage-3.6 run scripts/run_unit_tests.py
6767
coverage-3.6 xml
6868
python3 scripts/create_problems_list.py
@@ -71,7 +71,7 @@ jobs:
7171
- run:
7272
command: |
7373
export CODACY_PROJECT_TOKEN=%CODACY_PROJECT_TOKEN%
74-
python-codacy-coverage -r coverage.xml
74+
python3 -m python-codacy-coverage -r coverage.xml
7575
7676
workflows:
7777
version: 2

0 commit comments

Comments
 (0)
Please sign in to comment.