Skip to content
Snippets Groups Projects
Commit 54f50380 authored by Robert Habermann's avatar Robert Habermann
Browse files

Upgrade to include support/tests for Py39

parent 1335f913
No related branches found
No related tags found
No related merge requests found
......@@ -38,15 +38,21 @@ py38:
script:
- tox -e py38
py39:
stage: test
image: python:3.9
script:
- tox -e py39
pep8:
image: python:3.6
image: python:3.8
stage: style
allow_failure: true
script:
- tox -e pep8
wheel:
image: python:3.6
image: python:3.8
stage: package
script:
tox -e wheel
......@@ -55,7 +61,7 @@ wheel:
- dist/
sdist:
image: python:3.6
image: python:3.8
stage: package
script:
tox -e sdist
......
......@@ -25,7 +25,7 @@ Overview
:alt: MIT licensed
.. |PythonVersions| image:: https://img.shields.io/badge/python-2.7%2C%203.4%2C%203.5%2C%203.6%2C%203.7%2C%203.8-blue.svg
:alt: python: 2.7, 3.4, 3.5, 3.6, 3.7, 3.8
:alt: python: 2.7, 3.6, 3.7, 3.8, 3.9
PyOTRS is a Python wrapper for accessing `OTRS <https://www.otrs.com/>`_ (Version 5, 6, 7, 8) using the
......
......@@ -3,7 +3,8 @@
# coverage: clean, build, deploy
rm -rf htmlcov
sudo rm -rf /var/www/html/PyOTRS/htmlcov
/usr/local/bin/coverage html -d htmlcov
~/work/PyOTRS_project/venv/bin/coverage combine .coverage.data
~/work/PyOTRS_project/venv/bin/coverage html -d htmlcov
sudo cp -a htmlcov /var/www/html/PyOTRS/
# docs: clean, build, deploy
......
......@@ -59,11 +59,10 @@ setup(
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Documentation :: Sphinx',
],
......
......@@ -10,6 +10,7 @@ envlist =
py36,
py37,
py38,
py39,
cov_combine,
py3kwarn,
pep8,
......@@ -70,7 +71,7 @@ commands =
[testenv:pep8]
basepython =
python3.6
python3.8
deps =
flake8
......@@ -89,7 +90,7 @@ commands =
# --------------------------------------------------------------------
[testenv:docs]
basepython =
python3.6
python3.8
deps =
sphinx
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment