mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Merge style dependencies into dev dependencies
This commit is contained in:
parent
77d64ddc2c
commit
d95a8264f4
2 changed files with 2 additions and 4 deletions
|
|
@ -18,7 +18,7 @@ tasks:
|
||||||
- setup: |
|
- setup: |
|
||||||
sudo systemctl start docker
|
sudo systemctl start docker
|
||||||
cd vdirsyncer
|
cd vdirsyncer
|
||||||
make -e install-dev -e install-style
|
make -e install-dev -e install-docs
|
||||||
- test: |
|
- test: |
|
||||||
cd vdirsyncer
|
cd vdirsyncer
|
||||||
# Non-system python is used for packages:
|
# Non-system python is used for packages:
|
||||||
|
|
|
||||||
4
Makefile
4
Makefile
|
|
@ -60,9 +60,6 @@ ci-test-storage:
|
||||||
test:
|
test:
|
||||||
$(PYTEST)
|
$(PYTEST)
|
||||||
|
|
||||||
install-style: install-docs install-dev
|
|
||||||
pip install pre-commit
|
|
||||||
|
|
||||||
style:
|
style:
|
||||||
pre-commit run --all
|
pre-commit run --all
|
||||||
! git grep -i syncroniz */*
|
! git grep -i syncroniz */*
|
||||||
|
|
@ -87,6 +84,7 @@ install-dev:
|
||||||
pip install -U pip setuptools wheel
|
pip install -U pip setuptools wheel
|
||||||
pip install -e .
|
pip install -e .
|
||||||
pip install -Ur test-requirements.txt $(TEST_EXTRA_PACKAGES)
|
pip install -Ur test-requirements.txt $(TEST_EXTRA_PACKAGES)
|
||||||
|
pip install pre-commit
|
||||||
[ "$(ETESYNC_TESTS)" = "false" ] || pip install -Ue .[etesync]
|
[ "$(ETESYNC_TESTS)" = "false" ] || pip install -Ue .[etesync]
|
||||||
set -xe && if [ "$(REQUIREMENTS)" = "minimal" ]; then \
|
set -xe && if [ "$(REQUIREMENTS)" = "minimal" ]; then \
|
||||||
pip install -U --force-reinstall $$(python setup.py --quiet minimal_requirements); \
|
pip install -U --force-reinstall $$(python setup.py --quiet minimal_requirements); \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue