Skip to content

Commit

Permalink
more debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis CI committed Nov 10, 2020
1 parent 27a128b commit 2b2a267
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
language: python
python:
- '3.6'
- '3.8'
install:
- python setup.py install_egg_info
- pip install -U setuptools
- pip install .
- pip install -r requirements.txt
- pip install .
script:
- python setup.py test
- if [[ ${TRAVIS_PYTHON_VERSION:0:1} == "3" ]]; then pre-commit run --all-files; fi
- doit update_languages
after_success:
- git diff
- git status
- git diff-index HEAD --
- if ! git diff-index --quiet HEAD --; then .travis/push.sh; fi
- echo $TRAVIS_TAG
- git clean -df
- git diff-index HEAD --
- git diff
- git status
deploy:
provider: pypi
user: __token__
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
install_requires=["reportlab", "Pillow", "configargparse"],
tests_require=["pytest", "six", "pytest-flake8", "pre-commit", "doit"],
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,
author="Peter Gorniak",
author_email="[email protected]",
Expand Down

0 comments on commit 2b2a267

Please sign in to comment.