From 9d3ef030fa864b3c299fb13971ee5c31d4f16ec5 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Sat, 12 Jun 2021 12:41:30 +0200 Subject: [PATCH] Remove pointless condition These tasks are named "ci-*", no point in hiding them in other envs. --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 60f5fe5..295631d 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,6 @@ PYTEST = py.test $(PYTEST_ARGS) export TESTSERVER_BASE := ./tests/storage/servers/ CODECOV_PATH = /tmp/codecov.sh -ifeq ($(CI), true) ci-test: curl -s https://codecov.io/bash > $(CODECOV_PATH) $(PYTEST) tests/unit/ @@ -48,14 +47,14 @@ ci-test: $(PYTEST) tests/system/ bash $(CODECOV_PATH) -c -F system [ "$(ETESYNC_TESTS)" = "false" ] || make test-storage + ci-test-storage: curl -s https://codecov.io/bash > $(CODECOV_PATH) $(PYTEST) tests/storage/ bash $(CODECOV_PATH) -c -F storage -else + test: $(PYTEST) -endif all: $(error Take a look at https://vdirsyncer.pimutils.org/en/stable/tutorial.html#installation)