Skip to content

Commit

Permalink
add python 3.8 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
przemyslawjanpietrzak committed Jul 24, 2019
1 parent d1b53df commit a249ea0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -3,6 +3,7 @@ cache: pip
python:
- "3.6"
- "3.7"
- "3.8-dev"
install:
- make install
script:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -5,7 +5,7 @@ test:
pytest ./tests

test-with-coverage:
py.test ./tests --cov=./pymonet/
py.test tests --cov=pymonet

lint:
flake8 ./pymonet ./tests ./testers --max-line-length=120
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,6 +1,6 @@
pytest==4.6.3
pytest-mock==1.10.4
hypothesis==3.36.0
hypothesis==4.28.2

mypy==0.710

Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Expand Up @@ -58,7 +58,7 @@ def test_pipe_should_appield_functions_from_first_to_last(integer):


@given(
lists(elements=integers(), min_size=1, average_size=100, max_size=1000, unique=True),
lists(elements=integers(), min_size=1, max_size=1000, unique=True),
integers()
)
def test_find_should_return_none_when_item_is_not_in_collection_otherwise_should_return_item(lst, integer):
Expand Down

0 comments on commit a249ea0

Please sign in to comment.