Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
1. added CI configs for testing newly released Python 3.7 and Neo4j 3…
Browse files Browse the repository at this point in the history
….4.1

2. fixed bug in package import (pyyaml)
3. added pytest-flask to requirements.txt
  • Loading branch information
mostafa committed Jul 8, 2018
1 parent 10a5314 commit cfff8c8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ env:
matrix:
- NEO4J_VERSION="3.1.3"
- NEO4J_VERSION="3.3.3"
- NEO4J_VERSION="3.4.1"

before_install:
# install Neo4j locally:
Expand All @@ -22,6 +23,7 @@ before_install:
python:
- "2.7"
- "3.6"
- "3.7"
- "pypy"
# - "pypy3"

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ inflection==0.3.1
MarkupSafe==1.0
neomodel==3.2.9
pytest==3.6.3
pytest-flask==0.10.0
requests==2.19.1
setuptools==39.2.0
Unidecode==1.0.22
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6"
"Programming Language :: Python :: 3.7"
],
# keywords='',
setup_requires=['pytest-runner'],
Expand Down
2 changes: 1 addition & 1 deletion tests/test_extended_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import json
import xml.etree.ElementTree as ET
import pytest
from pyaml import yaml
import yaml
from examples.extended_app import create_app


Expand Down

0 comments on commit cfff8c8

Please sign in to comment.