Commit Graph

171 Commits

Author SHA1 Message Date
browniebroke
44688b2d43 Update pytest from 4.6.2 to 4.6.3 2019-06-12 12:00:29 +01:00
pyup-bot
59fcf9359b Update pyyaml from 5.1 to 5.1.1 2019-06-07 00:19:38 -07:00
pyup-bot
32e683f637 Update pytest from 4.6.0 to 4.6.2 2019-06-03 13:45:32 -07:00
browniebroke
53994b4f16 Update pytest from 4.5.0 to 4.6.0 2019-06-02 12:00:29 +01:00
browniebroke
4196d7e52f Update pytest_cases from 1.6.2 to 1.6.3 2019-05-29 12:00:37 +01:00
pyup-bot
4054105d63 Update tox from 3.11.1 to 3.12.1 2019-05-23 20:33:13 -07:00
Bruno Alla
e6458d7c07 Update flake8 from 3.7.6 to 3.7.7 2019-05-17 22:37:35 +01:00
browniebroke
c3f6df2eae Update tox from 3.11.0 to 3.11.1 2019-05-16 12:00:38 +01:00
pyup-bot
78d81d6f87 Update tox from 3.10.0 to 3.11.0 2019-05-15 10:45:37 -07:00
Bruno Alla
a245651f66 Increase test parallelism
- Split out tests and add markers to control where they are run in Travis
- Run each marker on a separate Travis task
- Install pytest-xdist to increase parallelism inside each worker
- Set xdist parallelism to 3
2019-05-15 12:37:17 +01:00
pyup-bot
dac16d6c40 Update tox from 3.9.0 to 3.10.0 2019-05-13 16:15:56 -07:00
browniebroke
bad8e972c5 Update pytest from 4.4.2 to 4.5.0 2019-05-12 12:00:29 +01:00
browniebroke
642521dc5e Update pytest from 4.4.1 to 4.4.2 2019-05-09 12:00:32 +01:00
pyup-bot
a1692ef541 Update tox from 3.8.6 to 3.9.0 2019-04-17 19:13:06 -07:00
browniebroke
9137bb561f Update pytest from 4.4.0 to 4.4.1 2019-04-16 12:00:29 +01:00
browniebroke
749920e81c Update pytest_cases from 1.6.1 to 1.6.2 2019-04-06 13:00:29 +02:00
Bruno Alla
1534cea9d3
Merge pull request #2020 from pydanny/pyup-update-pytest_cases-1.5.1-to-1.6.1
Update pytest_cases to 1.6.1
2019-04-03 18:52:29 +01:00
pyup-bot
c80bcb8932 Update pytest_cases from 1.5.1 to 1.6.1 2019-04-03 10:24:15 -07:00
pyup-bot
0aafad16dd Update tox from 3.8.4 to 3.8.6 2019-04-03 10:24:10 -07:00
pyup-bot
96934ab3e4 Update tox from 3.8.3 to 3.8.4 2019-04-01 20:07:42 -07:00
pyup-bot
e55d76529b Update pytest from 4.3.1 to 4.4.0 2019-04-01 00:47:56 -07:00
Bruno Alla
4e70a4b55a
Test all possible template combinations (#1993)
## Description

Fixes #591.

## Rationale

We are currently not testing many combinations, we run Flake8 on the generated project with default options, but that rarely catch any issues.

## Use case(s) / visualization(s)

Catch problems with invalid combinations, for instance, it fails due to Whitenoise breaking flake8 with `django-compressor` because `STATIC_URL` was undefined here:

b91c70d755/%7B%7Bcookiecutter.project_slug%7D%7D/config/settings/production.py (L185)
2019-04-01 08:47:46 +01:00
pyup-bot
da51b7a364 Update tox from 3.8.1 to 3.8.3 2019-03-29 09:58:15 -07:00
pyup-bot
c33417aa42 Update tox from 3.8.0 to 3.8.1 2019-03-28 18:52:24 -07:00
pyup-bot
7e60f1259a Update tox from 3.6.1 to 3.8.0 2019-03-27 14:15:44 -07:00
pyup-bot
aee746b5a2 Update pyyaml from 3.13 to 5.1 2019-03-13 10:40:27 -07:00
pyup-bot
2edd51aa77 Update pytest from 4.3.0 to 4.3.1 2019-03-13 05:37:54 -04:00
btknu
6e72169ffe Add missing script key to Travis CI config (#1950)
* Add failing test for travis.yml

I see three options to test travis.yml :

1. Testing that the YAML contains relevant value. Least useful and least
reliable, but simplest to implement.

2. Testing that the YAML is valid TravisCI YAML. Unfortunately this is
difficult / impossible. Doing 'travis lint' would succeed, this command
does not check for 'script' key presence and wouldn't be useful for us.

We could use 'travis-build' to verify that the YAML can be converted to
a worker config, but as of now 'travis-build' doesn't work out of the
box.

There is a new tool for validating travis YAML files 'travis-yml', but
as of now it's a ruby-only library and it's still a work in progress.

3. Running Travis CI task based on the generated YAML. This seems the
best approach, however since cookiecutter-django itself uses Travis CI,
that would require running Travis CI from within Travis CI.

Scheduling Travis CI job without a github push still requires a public
github repo, which is something that we can't generate on demand.

Given that I'm opting to use approach 1.

* Adds missing config to generated .travis.yml

The keys added are as follows:

1. 'script'

Required by Travis, cookiecutter-django used to provide it until it has
been removed together with hitch.

I'm assuming hitch has been replaced with pytest, I'm setting pytest as
the new value for the 'script' key.

2. 'install'

Not required by Travis, but necessary in our case; installs test
libraries, mostly pytest.

As of now this points to 'local.txt' requirements file. There used to be
a separate 'test.txt' requirements file but it has been decided to merge
it with 'local.txt', see discussion in
https://github.com/pydanny/cookiecutter-django/pull/1557 .

* Update CONTRIBUTORS.rst
2019-03-05 22:10:45 -03:00
pyup.io bot
b09d840b54 Update flake8 from 3.7.5 to 3.7.6 (#1943) 2019-02-20 20:10:52 +03:00
pyup.io bot
407ccb64ba Update pytest from 4.2.1 to 4.3.0 (#1944) 2019-02-20 20:10:41 +03:00
pyup-bot
0f8275911b Update pytest from 4.2.0 to 4.2.1 2019-02-16 03:34:22 -08:00
pyup-bot
ce23247401 Update flake8 from 3.7.4 to 3.7.5 2019-02-04 18:46:33 -08:00
pyup-bot
57c18bb2a0 Update flake8 from 3.7.3 to 3.7.4 2019-02-01 06:53:35 -08:00
Bruno Alla
11e7adfbd4
Merge pull request #1920 from pydanny/pyup-update-flake8-3.6.0-to-3.7.3
Update flake8 to 3.7.3
2019-01-31 16:52:30 +01:00
pyup-bot
12777d06c9 Update flake8 from 3.6.0 to 3.7.3 2019-01-31 05:23:22 -08:00
pyup-bot
75837bac65 Update pytest from 4.1.1 to 4.2.0 2019-01-30 16:40:22 -08:00
pyup-bot
922d3824c0 Update pytest from 4.1.0 to 4.1.1 2019-01-12 23:34:48 -08:00
pyup.io bot
2bf8f286e4 Update pytest to 4.1.0 (#1900)
* Update pytest from 4.0.2 to 4.1.0

* Update pytest from 4.0.2 to 4.1.0
2019-01-07 02:04:14 +03:00
pyup-bot
30fb2d3db7 Update tox from 3.6.0 to 3.6.1 2018-12-24 17:29:10 -08:00
Bruno Alla
5dc778368b
Merge branch 'master' into pyup-update-tox-3.5.3-to-3.6.0 2018-12-17 14:16:25 +00:00
pyup-bot
f083bc12b7 Update pytest from 4.0.1 to 4.0.2 2018-12-14 18:35:55 -08:00
pyup-bot
2d5136be1e Update tox from 3.5.3 to 3.6.0 2018-12-13 18:54:49 -08:00
pyup-bot
7d13fb0293 Update pytest from 4.0.0 to 4.0.1 2018-11-24 09:32:06 -08:00
pyup.io bot
f439e935a8 Update pytest to 4.0.0 (#1867)
* Update pytest from 3.10.1 to 4.0.0

* Update pytest from 3.10.1 to 4.0.0
2018-11-17 09:59:09 +00:00
pyup-bot
45d8d4a1c6 Update pytest from 3.10.0 to 3.10.1 2018-11-11 10:12:42 -08:00
pyup.io bot
36075be6dc Update pytest to 3.10.0 (#1848)
* Update pytest from 3.9.3 to 3.10.0

* Update pytest from 3.9.3 to 3.10.0
2018-11-05 10:31:50 +03:00
pyup.io bot
cee7516dc4 Update tox from 3.5.2 to 3.5.3 (#1843) 2018-10-29 22:15:43 +03:00
pyup.io bot
6c24de9c0f Update pytest to 3.9.3 (#1842)
* Update pytest from 3.9.2 to 3.9.3

* Update pytest from 3.9.2 to 3.9.3
2018-10-28 11:35:57 +03:00
pyup.io bot
ef2fc781f8 Update flake8 to 3.6.0 (#1839)
* Update flake8 from 3.5.0 to 3.6.0

* Update flake8 from 3.5.0 to 3.6.0
2018-10-24 13:36:48 +03:00
pyup.io bot
649ca872d2 Update pytest to 3.9.2 (#1837)
* Update pytest from 3.9.1 to 3.9.2

* Update pytest from 3.9.1 to 3.9.2
2018-10-23 20:23:23 +03:00