Merge branch 'dev' of https://github.com/bmartin5692/bumper into dev
This commit is contained in:
commit
059b405869
2 changed files with 34 additions and 0 deletions
12
.travis.yml
Normal file
12
.travis.yml
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
language: python
|
||||||
|
# Enable python 3.7 without globally enabling sudo and dist: xenial for other build jobs
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- python: 3.7
|
||||||
|
dist: xenial
|
||||||
|
sudo: true
|
||||||
|
install:
|
||||||
|
- pip install pipenv
|
||||||
|
- pipenv install --dev
|
||||||
|
|
||||||
|
script: nosetests
|
||||||
22
appveyor.yml
Normal file
22
appveyor.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
environment:
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
|
||||||
|
# For Python versions available on Appveyor, see
|
||||||
|
# http://www.appveyor.com/docs/installed-software#python
|
||||||
|
|
||||||
|
- PYTHON: "C:\\Python37"
|
||||||
|
|
||||||
|
install:
|
||||||
|
- pip install pipenv
|
||||||
|
- pipenv --python 3
|
||||||
|
- pipenv install --dev
|
||||||
|
|
||||||
|
build: off
|
||||||
|
|
||||||
|
test_script:
|
||||||
|
# Put your test command here.
|
||||||
|
# Note that you must use the environment variable %PYTHON% to refer to
|
||||||
|
# the interpreter you're using - Appveyor does not do anything special
|
||||||
|
# to put the Python version you want to use on PATH.
|
||||||
|
- "pipenv run nosetests"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue