summaryrefslogtreecommitdiff
path: root/.travis.yml
Commit message (Collapse)AuthorAge
* travis: add mariadb-10.3 as testDaniel Black2018-08-22
| | | | | Signed-off-by: Daniel Black <daniel@linux.ibm.com> Signed-off-by: Daniel Axtens <dja@axtens.net>
* travis: test against postgresql 10 and 11Daniel Black2018-08-22
| | | | | | | | | | | | | | | | | | | postgresql 10 is the most recent major version, and it would be good to keep an eye on postgres 11 compatibility also, so test against both of those. Specify PGPORT as a way to differentiate the new installations from the postgres 9.6 server running on the default port (5432). Use a local unix socket to work around the fact that by default postgres only allows passwordless auth on local sockets - which is tweaked for postgres 9.6 but not for later versions that aren't in the usual Travis image. Also print the current db version and user for validation. Signed-off-by: Daniel Black <daniel@linux.ibm.com> [cleanup, squash, commit message] Signed-off-by: Daniel Axtens <dja@axtens.net>
* tests: Remove Selenium testsStephen Finucane2018-04-26
| | | | | | | | | | | | | | | | These were added quite some time ago in order to allow some level of UI testing. However, I've personally never used them, they're not used by the CI, and no one has shown any desire in extending them in their time here. It is time to bid these tests adieu. Removing these allows us to remove a whole load of wiring that existed just to enable these. Some of this, like the '--quick-tox' option for the Dockerfile, is retained so we don't need to use different commands for various versions of Patchwork, but the majority is just stripped out. Signed-off-by: Stephen Finucane <stephen@that.guru> Cc: Daniel Axtens <dja@axtens.net>
* travis: Run pep8 for py27 onlyStephen Finucane2018-02-03
| | | | | | | | Keep run times to a minimum. Signed-off-by: Stephen Finucane <stephen@that.guru> Acked-by: Daniel Axtens <dja@axtens.net> Signed-off-by: Daniel Axtens <dja@axtens.net>
* travis: test Python 3.6Daniel Axtens2018-01-26
| | | | | | | | We have a tox entry for py36-django111. We should test that in Travis CI. Signed-off-by: Daniel Axtens <dja@axtens.net> Reviewed-by: Stephen Finucane <stephen@that.guru>
* travis: run pep8/flake8 testsDaniel Axtens2018-01-26
| | | | | | | | | | | Add the test at the end of each run. This is inefficient but simpler than adding a matrix entry. It's also very fast so there's no slowdown. While there, remove the 'codecov' package: tox will bring it in automatically. Signed-off-by: Daniel Axtens <dja@axtens.net> Reviewed-by: Stephen Finucane <stephen@that.guru>
* Test postgresql support in Travis CIDaniel Axtens2017-10-28
| | | | | | | | | | | Use the most recent version of postgres (9.6) because we need a more recent version than the default to show up the broken bundle behaviour. This should prevent us from causing any further regressions. Signed-off-by: Daniel Axtens <dja@axtens.net> Reviewed-by: Stephen Finucane <stephen@that.guru>
* travis: switch to using root userDaniel Axtens2017-09-06
| | | | | | | When I pushed the last change, I noticed that Travis was beginning to fail due to db permission errors. This is a trivial fixup. Signed-off-by: Daniel Axtens <dja@axtens.net>
* travis: Disable sudoStephen Finucane2016-11-01
| | | | | | | We don't need it, and disabling it can make builds faster. Disable it. Signed-off-by: Stephen Finucane <stephen@that.guru> Reviewed-by: Daniel Axtens <dja@axtens.net>
* travis: Integrate with codecovStephen Finucane2016-11-01
| | | | | | | | This mostly involves enabling coverage as a default tox target. We add pep8 too, while we're at it. Signed-off-by: Stephen Finucane <stephen@that.guru> Reviewed-by: Daniel Axtens <dja@axtens.net>
* travis: Use tox-travisStephen Finucane2016-11-01
| | | | | | | This simplifies our .travis.yml file Signed-off-by: Stephen Finucane <stephen@that.guru> Reviewed-by: Daniel Axtens <dja@axtens.net>
* travis: Enable *-django110 targetsStephen Finucane2016-10-10
| | | | | Signed-off-by: Stephen Finucane <stephen@that.guru> Reviewed-by: Daniel Axtens <dja@axtens.net>
* Add .travis.yml fileDaniel Axtens2016-09-07
This automatically runs the tests (except the browser ones) via tox. Tested on my github account. This will require some setup on the GitHub end: Travis will need to be turned on for the project, and ideally a badge added to the readme so we can see the build status. Signed-off-by: Daniel Axtens <dja@axtens.net> Signed-off-by: Stephen Finucane <stephenfinucane@hotmail.com>