Skip to content

Commit

Permalink
upgrade to django 3.0
Browse files Browse the repository at this point in the history
Compatibility with django 3.0
Unnecessary dependencies are removed.
Coverage tests for all components are added.
  • Loading branch information
rmustafa-cocus committed Apr 26, 2020
1 parent c3c46af commit 485d63c
Show file tree
Hide file tree
Showing 89 changed files with 1,677 additions and 1,132 deletions.
6 changes: 6 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[run]
branch = True
include =
./comment/*
omit =
./comment/tests/*
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,10 @@ coverage.xml

# Sphinx documentation
docs/_build/

# editor files
.idea

# env files
Pipfile.lock
Pipfile
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
dist: bionic
sudo: false
language: python
cache: pip
python:
- 3.6
- 3.7
- 3.8
env:
- DJANGO=2.2
- DJANGO=3.0
- DJANGO=master
- REPO_TOKEN=${REPO_TOKEN}
install: pip install tox-travis coveralls
script: tox
after_success: coveralls
Loading

0 comments on commit 485d63c

Please sign in to comment.