Skip to content

Commit ed34862

Browse files
authored
Merge pull request #19 from Kronopt/master
Fix ChainLink. Update tests
2 parents 4adf80f + 6e63e82 commit ed34862

14 files changed

Lines changed: 707 additions & 108 deletions

.circleci/config.yml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,38 @@ jobs:
99
steps:
1010
- checkout
1111
- run:
12-
command: |
13-
pip install -r requirements.txt --user
14-
python -m unittest tests.test_pykemon
12+
name: Install Requirements
13+
command: pip install -r requirements.txt -r requirements-dev27.txt --user
14+
- run:
15+
name: Run Tests
16+
command: python -m unittest tests.test_pykemon
1517

1618
py36_tests:
1719
docker:
1820
- image: circleci/python:3.6.6
1921
steps:
2022
- checkout
2123
- run:
22-
command: |
23-
pip install -r requirements.txt --user
24-
python -m unittest tests.test_pykemon
24+
name: Install Requirements
25+
command: pip install -r requirements.txt -r requirements-dev27.txt --user
26+
- run:
27+
name: Run Tests
28+
command: python -m unittest tests.test_pykemon
2529

2630
py37_tests:
2731
docker:
2832
- image: circleci/python:3.7.0
2933
steps:
3034
- checkout
3135
- run:
32-
command: |
33-
pip install -r requirements.txt --user
34-
python -m unittest tests.test_pykemon
36+
name: Install Requirements
37+
command: pip install -r requirements.txt -r requirements-dev.txt --user
38+
- run:
39+
name: Lint
40+
command: python -m pylint pykemon tests setup.py
41+
- run:
42+
name: Run Tests
43+
command: python -m unittest tests.test_pykemon
3544

3645
workflows:
3746
version: 2

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ pip-log.txt
2525
# Unit test / coverage reports
2626
.coverage
2727
.tox
28-
nosetests.xml
2928

3029
# Translations
3130
*.mo

0 commit comments

Comments
 (0)