File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Config file for automatic testing at circleci.com
2+
3+ version : 2
4+
5+ jobs :
6+ py27_tests :
7+ docker :
8+ - image : circleci/python:2.7.15
9+ steps :
10+ - checkout
11+ - run :
12+ command : |
13+ sudo pip install pipenv
14+ pipenv install -r requirements.txt
15+ pipenv run "python -m unittest tests.test_pykemon"
16+
17+ py36_tests :
18+ docker :
19+ - image : circleci/python:3.6.6
20+ steps :
21+ - checkout
22+ - run :
23+ command : |
24+ sudo pip install pipenv
25+ pipenv install -r requirements.txt
26+ pipenv run "python -m unittest tests.test_pykemon"
27+
28+ py37_tests :
29+ docker :
30+ - image : circleci/python:3.7.0
31+ steps :
32+ - checkout
33+ - run :
34+ command : |
35+ sudo pip install pipenv
36+ pipenv install -r requirements.txt
37+ pipenv run "python -m unittest tests.test_pykemon"
38+
39+ workflows :
40+ version : 2
41+ run_tests :
42+ jobs :
43+ - py27_tests
44+ - py36_tests
45+ - py37_tests
Original file line number Diff line number Diff line change 77 - " 3.6"
88 - " 3.7"
99
10- # Travis still doesn't support Python 3.7, so the following 2 lines are needed
10+ # Travis still doesn't support Python 3.7 yet , so the following 2 lines are needed
1111dist : xenial
1212sudo : true
1313
You can’t perform that action at this time.
0 commit comments