more debugging
This commit is contained in:
parent
27a128b79b
commit
2b2a2678b0
@ -1,21 +1,25 @@
|
|||||||
language: python
|
language: python
|
||||||
python:
|
python:
|
||||||
- '3.6'
|
- '3.8'
|
||||||
install:
|
install:
|
||||||
- python setup.py install_egg_info
|
- python setup.py install_egg_info
|
||||||
- pip install -U setuptools
|
- pip install -U setuptools
|
||||||
- pip install .
|
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
|
- pip install .
|
||||||
script:
|
script:
|
||||||
- python setup.py test
|
- python setup.py test
|
||||||
- if [[ ${TRAVIS_PYTHON_VERSION:0:1} == "3" ]]; then pre-commit run --all-files; fi
|
- if [[ ${TRAVIS_PYTHON_VERSION:0:1} == "3" ]]; then pre-commit run --all-files; fi
|
||||||
- doit update_languages
|
- doit update_languages
|
||||||
after_success:
|
after_success:
|
||||||
|
- git diff
|
||||||
|
- git status
|
||||||
- git diff-index HEAD --
|
- git diff-index HEAD --
|
||||||
- if ! git diff-index --quiet HEAD --; then .travis/push.sh; fi
|
- if ! git diff-index --quiet HEAD --; then .travis/push.sh; fi
|
||||||
- echo $TRAVIS_TAG
|
- echo $TRAVIS_TAG
|
||||||
- git clean -df
|
- git clean -df
|
||||||
- git diff-index HEAD --
|
- git diff-index HEAD --
|
||||||
|
- git diff
|
||||||
|
- git status
|
||||||
deploy:
|
deploy:
|
||||||
provider: pypi
|
provider: pypi
|
||||||
user: __token__
|
user: __token__
|
||||||
|
|||||||
5
setup.py
5
setup.py
@ -15,6 +15,11 @@ setup(
|
|||||||
install_requires=["reportlab", "Pillow", "configargparse"],
|
install_requires=["reportlab", "Pillow", "configargparse"],
|
||||||
tests_require=["pytest", "six", "pytest-flake8", "pre-commit", "doit"],
|
tests_require=["pytest", "six", "pytest-flake8", "pre-commit", "doit"],
|
||||||
url="http://domtabs.sandflea.org",
|
url="http://domtabs.sandflea.org",
|
||||||
|
project_urls={
|
||||||
|
"Say Thanks!": "https://boardgamegeek.com/thread/926575/web-page-generate-tabbed-dividers",
|
||||||
|
"Source": "https://github.com/sumpfork/dominiontabs",
|
||||||
|
"Tracker": "https://github.com/sumpfork/dominiontabs/issues",
|
||||||
|
},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
author="Peter Gorniak",
|
author="Peter Gorniak",
|
||||||
author_email="sumpfork@mailmight.net",
|
author_email="sumpfork@mailmight.net",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user