@@ -5,15 +5,15 @@ version: 2
55jobs :
66 py27 :
77 docker :
8- - image : circleci/python:2.7.16
8+ - image : circleci/python:2.7.18
99 steps :
1010 - checkout
1111 - run :
1212 name : Install Requirements
1313 command : pip install -r requirements.txt -r requirements-dev27.txt --user
1414 - run :
1515 name : Run Tests
16- command : python -m unittest discover tests
16+ command : make test
1717
1818 py34 :
1919 docker :
@@ -25,49 +25,49 @@ jobs:
2525 command : pip install -r requirements.txt -r requirements-dev27.txt --user
2626 - run :
2727 name : Run Tests
28- command : python -m unittest
28+ command : make test
2929
3030 py35 :
3131 docker :
32- - image : circleci/python:3.5.7
32+ - image : circleci/python:3.5.8
3333 steps :
3434 - checkout
3535 - run :
3636 name : Install Requirements
3737 command : pip install -r requirements.txt -r requirements-dev27.txt --user
3838 - run :
3939 name : Run Tests
40- command : python -m unittest
40+ command : make test
4141
4242 py36 :
4343 docker :
44- - image : circleci/python:3.6.9
44+ - image : circleci/python:3.6.10
4545 steps :
4646 - checkout
4747 - run :
4848 name : Install Requirements
4949 command : pip install -r requirements.txt -r requirements-dev27.txt --user
5050 - run :
5151 name : Run Tests
52- command : python -m unittest
52+ command : make test
5353
5454 py37 :
5555 docker :
56- - image : circleci/python:3.7.4
56+ - image : circleci/python:3.7.7
5757 steps :
5858 - checkout
5959 - run :
6060 name : Install Requirements
6161 command : sudo pip install -r requirements.txt -r requirements-dev.txt
6262 - run :
6363 name : Lint
64- command : python -m pylint pokepy tests setup.py
64+ command : make lint
6565 - run :
6666 name : Run Tests
67- command : python -m unittest
67+ command : make test
6868 - run :
6969 name : Run Coverage tool
70- command : coverage run --source pokepy -m unittest
70+ command : coverage run --source pokepy --omit="pokepy/fcache/*" - m unittest tests.test_pokepy
7171 - run :
7272 name : Generate XML coverage report
7373 command : coverage xml
@@ -77,15 +77,15 @@ jobs:
7777
7878 py38 :
7979 docker :
80- - image : circleci/python:3.8.0
80+ - image : circleci/python:3.8.3
8181 steps :
8282 - checkout
8383 - run :
8484 name : Install Requirements
8585 command : pip install -r requirements.txt -r requirements-dev27.txt --user
8686 - run :
8787 name : Run Tests
88- command : python -m unittest
88+ command : make test
8989
9090workflows :
9191 version : 2
0 commit comments