Skip to content

Commit

Permalink
Added QA for py3.7 and Django 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
idlesign committed Apr 6, 2019
1 parent 2ee7a6a commit be5d6b8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .travis.yml
@@ -1,10 +1,15 @@
dist: xenial

language: python

python:
- 3.7
- 3.6
- 3.5

env:
- DJANGO="Django>=2.2,<2.3"
- DJANGO="Django>=2.1,<2.2"
- DJANGO="Django>=2.0,<2.1"
- DJANGO="Django>=1.11,<1.12"
- DJANGO="Django>=1.10,<1.11"
Expand Down
2 changes: 2 additions & 0 deletions pytest.ini
@@ -0,0 +1,2 @@
[pytest]
addopts = --pyargs sitemetrics
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -60,5 +60,6 @@ def get_version():
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)
4 changes: 3 additions & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py{35,36}-django{18,19,110,111,200}
py{35,36,37}-django{18,19,110,111,200,210,220}

install_command = pip install {opts} {packages}
skip_missing_interpreters = True
Expand All @@ -14,3 +14,5 @@ deps =
django110: Django>=1.10,<1.11
django111: Django>=1.11,<1.12
django200: Django>=2.0,<2.1
django210: Django>=2.1,<2.2
django220: Django>=2.2,<2.3

0 comments on commit be5d6b8

Please sign in to comment.