Skip to content

Commit

Permalink
CI integration install
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Jul 2, 2019
1 parent 92f3fe2 commit d4f680a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Expand Up @@ -16,5 +16,5 @@ init:

install: pip install -e .[tests]

test_script: pytest -v
test_script: pytest -r a -v

14 changes: 12 additions & 2 deletions .travis.yml
Expand Up @@ -9,16 +9,26 @@ git:
matrix:
include:
- os: linux
name: Integration install
python: 3.7
install:
- python setup.py install
- pip install $(basename $TRAVIS_REPO_SLUG)[tests]
script:
- cd $HOME
- python -m pytest $TRAVIS_BUILD_DIR/tests -r a -v
- os: linux
name: PEP8 MyPy Coverage
python: 3.7
install: pip install -e .[tests,cov]
script:
- flake8
- mypy .
- pytest -v
- pytest -r a -v
after_success:
- pytest --cov
- coveralls

install: pip install -e .[tests]

script: pytest -v
script: pytest -r a -v
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -32,8 +32,8 @@ python_requires = >= 3.7
setup_requires =
setuptools >= 38.6
pip >= 10
twine >= 1.11
packages = find:
zip_safe: false
scripts =
ActOnChanged.py
branch.py
Expand Down

0 comments on commit d4f680a

Please sign in to comment.