Skip to content

Commit a7fae21

Browse files
authored
fix: directory structure of core (#53)
1 parent f00ad2d commit a7fae21

File tree

6 files changed

+2
-2
lines changed

6 files changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ install:
88

99
install-dev:
1010
# install core
11-
pip install -e core;poetry install -C core --only dev --no-root
11+
pip install -e core && poetry install -C core --only dev --no-root
1212
# install services
1313
@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
1414

1515
test:
1616
# test core
17-
cd core; pytest; cd ..;
17+
cd core && pytest && cd ..
1818
# test services
1919
@for f in $(shell ls ${SERVICES_DIR}); do set -e; cd ${SERVICES_DIR}/$${f}; sh -c 'pytest || ([ $$? = 5 ] && exit 0 || exit $$?)'; cd ../..; done
2020

File renamed without changes.

0 commit comments

Comments
 (0)