We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a100339 commit b55afdaCopy full SHA for b55afda
Makefile
@@ -8,13 +8,13 @@ install:
8
9
install-dev:
10
# install core
11
- pip install -e core;poetry install -C core --only dev --no-root
+ pip install -e core && poetry install -C core --only dev --no-root
12
# install services
13
@for f in $(shell ls ${SERVICES_DIR}); do pip install -e ${SERVICES_DIR}/$${f};poetry install -C ${SERVICES_DIR}/$${f} --only dev --no-root; done
14
15
test:
16
# test core
17
- cd core; pytest; cd ..;
+ cd core && pytest && cd ..
18
# test services
19
@for f in $(shell ls ${SERVICES_DIR}); do set -e; cd ${SERVICES_DIR}/$${f}; sh -c 'pytest || ([ $$? = 5 ] && exit 0 || exit $$?)'; cd ../..; done
20
0 commit comments