Files @ 42718729687e
Branch filter:

Location: kallithea/pytest.ini

Thomas De Schampheleire
style: use npm less to generate kallithea stylesheet style.css from style.less

This is a minimal change to introduce less as framework to generate our
stylesheet. The input less file is currently the same as the original css
stylesheet, so that the delta between the input style.less and the output
style.css is zero.

To regenerate style.css from style.less, run:

npm --prefix kallithea/public/less install
npm --prefix kallithea/public/less run less

These changes are based on work by Dominik Ruf.
1
2
3
4
5
6
7
8
9
[pytest]
# only look for tests in kallithea/tests
python_files = kallithea/tests/**/test_*.py
addopts =
    # --verbose
    # show extra test summary info as specified by chars (f)ailed, (E)error, (s)skipped, (x)failed, (X)passed, (w)warnings.
    -rfEsxXw
    # Shorter scrollbacks; less stuff to scroll through
    --tb=short