Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

Commit cdc3844

Browse files
committed
Fix circle.yml (pep8 version)
1 parent 4c4ce23 commit cdc3844

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test: pep8 pyflakes
1010
python setup.py test
1111

1212
coverage:
13-
rm coverage.xml
13+
rm coverage.xml || true
1414
coverage run --source src/codacy/ setup.py test
1515
coverage xml
1616
python-codacy-coverage -r coverage.xml

circle.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
machine:
2+
python:
3+
version:
4+
- 2.7.10
5+
- 3.4.3
6+
7+
dependencies:
8+
post:
9+
- sudo pip install pep8 --upgrade
10+
- sudo pip install pyflakes
11+
112
test:
213
override:
314
- make test

0 commit comments

Comments
 (0)