Merge style dependencies into dev dependencies

This commit is contained in:
Hugo Osvaldo Barrera 2021-06-12 15:13:16 +02:00
parent 77d64ddc2c
commit d95a8264f4
2 changed files with 2 additions and 4 deletions

View file

@ -18,7 +18,7 @@ tasks:
- setup: |
sudo systemctl start docker
cd vdirsyncer
make -e install-dev -e install-style
make -e install-dev -e install-docs
- test: |
cd vdirsyncer
# Non-system python is used for packages:

View file

@ -60,9 +60,6 @@ ci-test-storage:
test:
$(PYTEST)
install-style: install-docs install-dev
pip install pre-commit
style:
pre-commit run --all
! git grep -i syncroniz */*
@ -87,6 +84,7 @@ install-dev:
pip install -U pip setuptools wheel
pip install -e .
pip install -Ur test-requirements.txt $(TEST_EXTRA_PACKAGES)
pip install pre-commit
[ "$(ETESYNC_TESTS)" = "false" ] || pip install -Ue .[etesync]
set -xe && if [ "$(REQUIREMENTS)" = "minimal" ]; then \
pip install -U --force-reinstall $$(python setup.py --quiet minimal_requirements); \