Skip to content

Commit 296b3a3

Browse files
committed
circleci config file v2
1 parent 3c10fe8 commit 296b3a3

1 file changed

Lines changed: 6 additions & 9 deletions

File tree

.circleci/config.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ jobs:
1010
- checkout
1111
- run:
1212
command: |
13-
sudo pip install pipenv
14-
pipenv install -r requirements.txt
15-
pipenv run "python -m unittest tests.test_pykemon"
13+
pip install -r requirements.txt
14+
python -m unittest tests.test_pykemon
1615
1716
py36_tests:
1817
docker:
@@ -21,9 +20,8 @@ jobs:
2120
- checkout
2221
- run:
2322
command: |
24-
sudo pip install pipenv
25-
pipenv install -r requirements.txt
26-
pipenv run "python -m unittest tests.test_pykemon"
23+
pip install -r requirements.txt
24+
python -m unittest tests.test_pykemon
2725
2826
py37_tests:
2927
docker:
@@ -32,9 +30,8 @@ jobs:
3230
- checkout
3331
- run:
3432
command: |
35-
sudo pip install pipenv
36-
pipenv install -r requirements.txt
37-
pipenv run "python -m unittest tests.test_pykemon"
33+
pip install -r requirements.txt
34+
python -m unittest tests.test_pykemon"
3835
3936
workflows:
4037
version: 2

0 commit comments

Comments
 (0)