Skip to content
Snippets Groups Projects
Verified Commit e77218d3 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Do not install all apps

parent 8e269d50
No related branches found
No related tags found
1 merge request!266Do not install all apps
Pipeline #2065 passed
......@@ -11,9 +11,9 @@ envdir = {toxworkdir}/globalenv
commands_pre =
- sudo apt update
- sudo apt install python3-ldap libldap2-dev libssl-dev libsasl2-dev python3.7-dev -y
- ./dev.sh install-all
- poetry install
commands =
- poetry run pytest --cov=. {posargs} aleksis/ apps/official/
- poetry run pytest --cov=. {posargs} aleksis/
[testenv:selenium]
setenv =
......@@ -24,9 +24,9 @@ setenv =
[testenv:lint]
commands =
- poetry run black --check --diff aleksis/ apps/official/ --exclude "migrations"
- poetry run isort -c --diff --stdout -rc -s migrations aleksis/ apps/official/
poetry run flake8 {posargs} --exclude-from-doctest migrations aleksis/ apps/official/
- poetry run black --check --diff aleksis/ --exclude "migrations"
- poetry run isort -c --diff --stdout -rc -s migrations aleksis/
poetry run flake8 {posargs} --exclude-from-doctest migrations aleksis/
[testenv:security]
commands =
......@@ -42,8 +42,8 @@ commands = poetry run make -C docs/ html {posargs}
[testenv:reformat]
commands =
poetry run isort -rc aleksis/ apps/official/
poetry run black aleksis/ apps/official/
poetry run isort -rc aleksis/
poetry run black aleksis/
[flake8]
max_line_length = 100
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment