Skip to content
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
lsbardel committed Nov 6, 2018
1 parent 8730cd0 commit db3adca
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
version: 2
jobs:
tests:
tests36:
docker:
- image: circleci/python:3.6
steps:
- checkout
- run:
name: install
command: sudo python setup.py install && sudo ./dev/install-dev.sh
- run:
name: test
command: pytest
tests:
docker:
- image: circleci/python:3.7
steps:
- checkout
- run:
Expand Down Expand Up @@ -49,9 +60,11 @@ workflows:
version: 2
build-deploy:
jobs:
- tests36
- tests
- deploy-release:
requires:
- tests36
- tests
filters:
branches:
Expand Down
2 changes: 1 addition & 1 deletion agiletoolkit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def shi(command, cwd=None, echo=None, env=None):
def command():
try:
yield
except CommandError as exc:
except CommandError:
raise


Expand Down

0 comments on commit db3adca

Please sign in to comment.