Skip to content

Commit

Permalink
Add Python 3.8 job
Browse files Browse the repository at this point in the history
Initially Pytest failed to collect the tests and crashed with:

  File "/home/developer/.pyenv/versions/3.8.0/lib/python3.8/importlib/metadata.py", line 379, in find_distributions
    found = cls._search_paths(context.pattern, context.path)
AttributeError: 'str' object has no attribute 'pattern'

Updating all dependencies fixed it.

Fixes #37
  • Loading branch information
OrangeTux committed Nov 11, 2019
1 parent bfbe213 commit d9cb52b
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 56 deletions.
14 changes: 12 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1
jobs:
test-36:
docker:
- image: circleci/python:3.6.6
- image: circleci/python:3.6
steps:
- checkout
- run:
Expand All @@ -14,7 +14,16 @@ jobs:
test-37:
docker:
- image: circleci/python:3.7.3
- image: circleci/python:3.7
steps:
- checkout
- run:
name: run tests
command: make deps && make test

test-38:
docker:
- image: circleci/python:3.8
steps:
- checkout
- run:
Expand All @@ -27,3 +36,4 @@ workflows:
jobs:
- test-36
- test-37
- test-38
Loading

0 comments on commit d9cb52b

Please sign in to comment.