mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Remove pointless condition
These tasks are named "ci-*", no point in hiding them in other envs.
This commit is contained in:
parent
eec142ac15
commit
9d3ef030fa
1 changed files with 2 additions and 3 deletions
5
Makefile
5
Makefile
|
|
@ -40,7 +40,6 @@ PYTEST = py.test $(PYTEST_ARGS)
|
||||||
export TESTSERVER_BASE := ./tests/storage/servers/
|
export TESTSERVER_BASE := ./tests/storage/servers/
|
||||||
CODECOV_PATH = /tmp/codecov.sh
|
CODECOV_PATH = /tmp/codecov.sh
|
||||||
|
|
||||||
ifeq ($(CI), true)
|
|
||||||
ci-test:
|
ci-test:
|
||||||
curl -s https://codecov.io/bash > $(CODECOV_PATH)
|
curl -s https://codecov.io/bash > $(CODECOV_PATH)
|
||||||
$(PYTEST) tests/unit/
|
$(PYTEST) tests/unit/
|
||||||
|
|
@ -48,14 +47,14 @@ ci-test:
|
||||||
$(PYTEST) tests/system/
|
$(PYTEST) tests/system/
|
||||||
bash $(CODECOV_PATH) -c -F system
|
bash $(CODECOV_PATH) -c -F system
|
||||||
[ "$(ETESYNC_TESTS)" = "false" ] || make test-storage
|
[ "$(ETESYNC_TESTS)" = "false" ] || make test-storage
|
||||||
|
|
||||||
ci-test-storage:
|
ci-test-storage:
|
||||||
curl -s https://codecov.io/bash > $(CODECOV_PATH)
|
curl -s https://codecov.io/bash > $(CODECOV_PATH)
|
||||||
$(PYTEST) tests/storage/
|
$(PYTEST) tests/storage/
|
||||||
bash $(CODECOV_PATH) -c -F storage
|
bash $(CODECOV_PATH) -c -F storage
|
||||||
else
|
|
||||||
test:
|
test:
|
||||||
$(PYTEST)
|
$(PYTEST)
|
||||||
endif
|
|
||||||
|
|
||||||
all:
|
all:
|
||||||
$(error Take a look at https://vdirsyncer.pimutils.org/en/stable/tutorial.html#installation)
|
$(error Take a look at https://vdirsyncer.pimutils.org/en/stable/tutorial.html#installation)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue