Skip to content

Commit

Permalink
Move zen deps initialization to ci/cd manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
ir4y committed Sep 7, 2023
1 parent 18a1dbf commit 9d700c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ jobs:
docker build --cache-from ${{ env.CACHE_IMAGE }}
--tag ${{ env.BUILD_IMAGE }} .
- name: Run tests
run: ./run_test.sh
run: >-
mkdir -p ./tests_zen_project/zen-packages/ &&
chmod 0666 ./tests_zen_project/zen-packages/ &&
./run_test.sh
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
Expand Down
1 change: 0 additions & 1 deletion run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@ export TEST_COMMAND="pipenv run pytest --cov-report html --cov-report term:skip-
COMPOSE_FILES="-f docker-compose.tests.yaml"

docker compose -f docker-compose.tests.yaml build
mkdir -p ./tests_zen_project/zen-packages/
docker compose $COMPOSE_FILES up --exit-code-from backend backend
exit $?

0 comments on commit 9d700c2

Please sign in to comment.