Skip to content

Commit

Permalink
Add pidiff to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanpm committed Mar 17, 2019
1 parent c10d90b commit eeb0181
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ workflows:
persist_coverage: true
filters:
<<: *ci_filters
- python/tox:
name: API compatibility check
toxenv: pidiff
filters:
<<: *ci_filters
- python/tox:
name: Static checks
toxenv: static
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,4 @@ ENV/
.mypy_cache/
/MANIFEST
.pytest_cache/
.pidiff/
8 changes: 7 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py36,static,docs
envlist = py26,py27,py36,static,docs,pidiff

[testenv]
passenv = COVERALLS_REPO_TOKEN CIRCLECI CIRCLE_* CI_PULL_REQUEST
Expand Down Expand Up @@ -45,5 +45,11 @@ commands=
docs docs/_build \
'

[testenv:pidiff]
deps=
pidiff
commands=
pidiff more-executors .

[flake8]
max-line-length = 100

0 comments on commit eeb0181

Please sign in to comment.