8000 Adapt test suite for recent Travis changes by FinalAngel · Pull Request #6709 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

Adapt test suite for recent Travis changes #6709

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 6, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updates
  • Loading branch information
FinalAngel committed Aug 6, 2019
commit 617cbac5126e6b73678c2ee3aeec905e8d2c4675
20 changes: 5 additions & 15 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<!--
If this is a security-related patch stop immediately!

See http://docs.django-cms.org/en/latest/contributing/development-policies.html
-->

Expand All @@ -10,24 +9,15 @@
Fixes #



### Links to related discussion



### Proposed changes in this pull request


### Documentation checklist
### General checklist

* [ ] I have updated CHANGELOG.txt if appropriate
* [ ] I have updated the release notes document if appropriate, with:
* [ ] general notes
* [ ] bug-fixes
* [ ] improvements/new features
* [ ] backwards-incompatible changes
* [ ] required upgrade steps
* [ ] names of contributors
* [ ] I have updated other documentation
* [ ] I have added my name to the AUTHORS file
* [ ] This PR's documentation has been approved by Daniele Procida
* [ ] I have updated the CHANGELOG.txt
* [ ] I have created backports if necessary
* [ ] I have updated the documentation and/or amended the upgrade section
if necessary
8 changes: 2 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,9 @@ python:
dist: xenial
sudo: false

addons:
apt:
packages:
- enchant

services:
- mysql
- postgresql

cache:
directories:
Expand Down Expand Up @@ -108,7 +104,7 @@ matrix:
- python: 3.6
env: TEST_DOCS=1 DJANGO=2.2 DATABASE_URL='sqlite://localhost/:memory:'
- python: 3.7
env: TEST_DOCS=1 DJANGO=2.2 DATABASE_URL='sqlite://localhost/:memory:'
env: DJANGO=2.2 DATABASE_URL='postgres://postgres@127.0.0.1/djangocms_test'
allow_failures:
- python: 2.7
env: DJANGO=1.11 DATABASE_URL='sqlite://localhost/:memory:'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
=== 3.7.0 (unreleased) ===

* Introduced Django 2.2 support.
* Introduced Python 3.7 support.
* Fixed test suite.


Expand Down
4 changes: 3 additions & 1 deletion docs/upgrade/3.7.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
3.7.0 release notes
###################

This release of django CMS concentrates on introducing support for Django 2.2 LTS.
This release of django CMS concentrates on introducing support for Django 2.2 LTS
and Python 3.7.


*******************
Expand All @@ -15,6 +16,7 @@ Improvements and new features
=============================

* introduced support for Django 2.2
* Introduced Python 3.7 support.
* Fixed test suite.


Expand Down
0