Yuchen Xie
a88b6b04b6
Speed up django image build process, and reduce its size
2019-12-09 09:55:37 +08:00
browniebroke
97880e5046
Update sentry-sdk from 0.13.4 to 0.13.5
2019-12-06 11:00:30 +00:00
Bruno Alla
efbf164e84
Update ipdb to 0.12.3 ( #2346 )
...
Update ipdb to 0.12.3
2019-12-04 13:25:33 +00:00
browniebroke
e7923c6c5c
Update flake8 from 3.7.8 to 3.7.9
2019-12-04 11:00:35 +00:00
browniebroke
112972d881
Update ipdb from 0.12.2 to 0.12.3
2019-12-04 11:00:32 +00:00
Bruno Alla
828f9c5cf8
updated werkzeug from 0.14.1 to 0.16.0 ( #2341 )
...
updated werkzeug from 0.14.1 to 0.16.0
2019-12-03 14:12:08 +00:00
Bruno Alla
676c9fb336
Update sphinx to 2.2.2 ( #2344 )
...
Update sphinx to 2.2.2
2019-12-03 14:11:25 +00:00
browniebroke
3140fe74ca
Update sphinx from 2.2.1 to 2.2.2
2019-12-03 11:00:42 +00:00
Jelmert
2214951bbe
updated werkzeug from 0.14.1 to 0.16.0
2019-12-03 11:19:01 +01:00
Fábio C. Barrionuevo da Luz
faa6cdafd4
Merge branch 'master' into pyup-update-mypy-0.740-to-0.750
2019-12-02 13:49:20 -03:00
Fábio C. Barrionuevo da Luz
9fade08a69
Merge pull request #2335 from pydanny/pyup-update-pytest-5.3.0-to-5.3.1
...
Update pytest to 5.3.1
2019-12-02 13:47:48 -03:00
browniebroke
b638ce0a1b
Update django from 2.2.7 to 2.2.8
2019-12-02 11:00:31 +00:00
browniebroke
1453b32891
Update mypy from 0.740 to 0.750
2019-11-30 11:00:31 +00:00
browniebroke
9ec808e7f4
Update pytest from 5.3.0 to 5.3.1
2019-11-28 11:00:32 +00:00
Bruno Alla
595b0c8d52
Update sentry-sdk to 0.13.4 ( #2334 )
...
Update sentry-sdk to 0.13.4
2019-11-27 12:26:01 +00:00
browniebroke
4283ca76a4
Update sentry-sdk from 0.13.3 to 0.13.4
2019-11-27 11:00:38 +00:00
browniebroke
6a302ec703
Update gunicorn from 20.0.3 to 20.0.4
2019-11-27 11:00:34 +00:00
Fábio C. Barrionuevo da Luz
7d563e873c
Merge pull request #2329 from morenoh149/patch-1
...
Make update form button look like a button
2019-11-26 17:09:08 -03:00
browniebroke
832275a792
Update gunicorn from 20.0.2 to 20.0.3
2019-11-26 11:00:32 +00:00
Fábio C. Barrionuevo da Luz
500504d4c5
Merge pull request #2323 from pydanny/pyup-update-gunicorn-20.0.0-to-20.0.2
...
Update gunicorn to 20.0.2
2019-11-25 19:24:15 -03:00
Fábio C. Barrionuevo da Luz
cb7c99b12f
Merge pull request #2324 from pydanny/pyup-update-django-crispy-forms-1.8.0-to-1.8.1
...
Update django-crispy-forms to 1.8.1
2019-11-25 19:24:04 -03:00
Fábio C. Barrionuevo da Luz
4355243848
Merge pull request #2325 from pydanny/pyup-update-pylint-django-2.0.12-to-2.0.13
...
Update pylint-django to 2.0.13
2019-11-25 19:23:40 -03:00
Harry Moreno
82c8b51272
Make update form button look like a button
...
without `ban-primary` the button looks like some floating text.
2019-11-25 16:43:30 -05:00
browniebroke
fbd0fcbb61
Update sentry-sdk from 0.13.2 to 0.13.3
2019-11-25 11:00:33 +00:00
browniebroke
dce02bae70
Update pylint-django from 2.0.12 to 2.0.13
2019-11-24 11:00:31 +00:00
browniebroke
09d95d8ab4
Update django-crispy-forms from 1.8.0 to 1.8.1
2019-11-23 11:00:37 +00:00
browniebroke
b014121810
Update gunicorn from 20.0.0 to 20.0.2
2019-11-23 11:00:33 +00:00
browniebroke
9481a5a390
Update django-storages from 1.7.2 to 1.8
2019-11-21 11:00:34 +00:00
browniebroke
4daf3b9769
Update django-storages from 1.7.2 to 1.8
2019-11-21 11:00:33 +00:00
Bruno Alla
117c7d025b
Using WhiteNoise in development ( #2304 )
...
Using WhiteNoise in development
2019-11-20 18:57:02 +00:00
browniebroke
cdd9205075
Update pytest from 5.2.4 to 5.3.0
2019-11-20 11:00:35 +00:00
browniebroke
526f135e85
Update pytest from 5.2.3 to 5.2.4
2019-11-16 11:00:32 +00:00
browniebroke
0bd04dd5b3
Update pytest from 5.2.2 to 5.2.3
2019-11-15 11:00:33 +00:00
Dani Hodovic
ff0122acd6
Use pytest-django --reuse-db for faster tests
...
Pytest-django allows you to re-use database setups between tests for
quicker test runs. This is especially useful for large projects with many
migrations.
For example, here's a project of mine with 40+ migrations:
with --reuse-db
```
pytest --reuse-db 2.54s user 0.35s system 108% cpu 2.669 total
```
without --reuse-db
```
pytest 7.40s user 0.34s system 50% cpu 15.240 total
```
Caveat: if your model happens to change you need to manually --create-db
to ensure migrations are applied.
https://pytest-django.readthedocs.io/en/latest/database.html#reuse-db-reuse-the-testing-database-between-test-runs
2019-11-13 23:28:38 +01:00
browniebroke
a38c61369e
Update django-debug-toolbar from 2.0 to 2.1
2019-11-12 11:00:32 +00:00
Bruno Alla
c2daa58fc4
Update pytest-django to 3.7.0 ( #2308 )
...
Update pytest-django to 3.7.0
2019-11-10 22:16:32 +00:00
Bruno Alla
ea37ed5ffd
Merge pull request #2307 from pydanny/pyup-update-sentry-sdk-0.13.1-to-0.13.2
...
Update sentry-sdk to 0.13.2
2019-11-10 22:16:16 +00:00
browniebroke
fd5e9be58b
Update pytest-django from 3.6.0 to 3.7.0
2019-11-09 11:00:37 +00:00
browniebroke
eeda7dfe33
Update sentry-sdk from 0.13.1 to 0.13.2
2019-11-09 11:00:33 +00:00
browniebroke
8a1ec53a74
Update gunicorn from 19.9.0 to 20.0.0
2019-11-09 11:00:30 +00:00
Yuchen Xie
0374f11d09
Using WhiteNoise in development
2019-11-07 21:03:33 +08:00
browniebroke
9e58bb4e80
Update pylint-django from 2.0.11 to 2.0.12
2019-11-05 12:00:32 +01:00
Bruno Alla
d68db825e2
Add pre-commit for the generated project. ( #2171 ) ( #2295 )
...
Add pre-commit for the generated project. (#2171 )
2019-11-04 13:38:02 +01:00
Bruno Alla
8eaf55408a
Update black to 19.10b0 ( #2294 )
...
Update black to 19.10b0
2019-11-04 13:36:20 +01:00
Bruno Alla
84c4589e87
Update django to 2.2.7 ( #2299 )
...
Update django to 2.2.7
2019-11-04 13:35:08 +01:00
browniebroke
8f74fdb942
Update django from 2.2.6 to 2.2.7
2019-11-04 12:00:33 +01:00
Bruce Olivier
04f3ae75dc
Added more settings to .editorconfig to run isort and have black compatibility.
2019-11-02 16:55:18 -05:00
leollon
4a194c6966
Add pre-commit for the generated project. ( #2171 )
2019-10-29 22:48:39 +08:00
browniebroke
10e395f65c
Update black from 19.3b0 to 19.10b0
2019-10-29 11:00:32 +00:00
Bruno Alla
976303115f
Merge branch 'master' into pyup-update-python-slugify-3.0.6-to-4.0.0
2019-10-28 12:43:34 +00:00