Skip to content

Commit

Permalink
minor edits for formatting etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
monocongo committed Jan 29, 2020
1 parent f247ee0 commit 2fc477b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 20 deletions.
36 changes: 17 additions & 19 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,29 @@
version: 2
jobs:

# using tox
toxify:
# using tox
toxify:

docker:
- image: python:3.7
docker:
- image: circleci/python:3.7

steps:
steps:
- checkout
# download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- checkout

# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: pip install tox && tox
- run: pip install tox && tox

workflows:
version: 2
version: 2

myproj:
jobs:
- toxify
cvdata:
jobs:
- toxify

#jobs:
# build:
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{36,37,},coverage
envlist = py36,py37,coverage

# Define the minimal tox version required to run; if the host
# tox is less than this the tool with create an environment and
Expand All @@ -21,4 +21,5 @@ deps =
commands =
python setup.py check -m -s
py.test tests {posargs}
coverage

0 comments on commit 2fc477b

Please sign in to comment.