0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 01:57:32 +01:00
wagtail/tox.ini
Tim Heap ddebafa119 Remove libsass dependency, precompile CSS for distribution
Depending on libsass for all Wagtail installations was causing issues
with various operating systems, dramatically increasing installation
times, and preventing front end development adopting modern practices.

libsass has been removed as a dependency. Sass files are compiled before
release as a dependency of the `sdist` setup command. Sass compilation
is done through `gulp`. People wishing to hack on the frontend assets
should now install wagtail locally, install the node dependencies, and
run `gulp`:

    $ pip install -e path/to/wagtail
    $ cd path/to/wagtail
    $ npm install
    $ npm start

All the templates and JS files have been updated to reference the new
compiled CSS files instead of the Sass files.

Precompiled CSS for jquery-ui and similar have been moved out of the
`scss/` directory to the `css/` directory.
2015-05-01 08:53:04 +10:00

56 lines
1.1 KiB
INI

[tox]
skipsdist = True
usedevelop = True
envlist = py{27,33,34}-dj{17,18}-{sqlite,postgres,mysql}, flake8
[flake8]
ignore = E501,E128,E261,E302,E303,E124,E126
exclude = wagtail/project_template/*
[testenv]
commands=coverage run runtests.py
basepython =
py27: python2.7
py33: python3.3
py34: python3.4
deps =
django-compressor>=1.4
django-modelcluster>=0.6
django-taggit==0.13.0
django-treebeard==3.0
Pillow>=2.3.0
beautifulsoup4>=4.3.2
html5lib==0.999
Unidecode>=0.04.14
six==1.7.3
requests==2.3.0
elasticsearch==1.1.0
mock==1.0.1
python-dateutil==2.2
pytz==2014.7
Embedly
Willow==0.2
coverage
py27: unicodecsv>=0.9.4
dj17: Django>=1.7.1,<1.8
dj18: Django>=1.8,<1.9
postgres: psycopg2>=2.6
mysql: mysqlclient==1.3.6
setenv =
postgres: DATABASE_ENGINE=django.db.backends.postgresql_psycopg2
mysql: DATABASE_ENGINE=django.db.backends.mysql
mysql: DATABASE_USER=wagtail
mysql: DATABASE_HOST=localhost
mysql: DATABASE_USER=root
[testenv:flake8]
basepython=python3.4
deps=flake8>=2.2.0
commands=flake8 wagtail