Skip to content

Commit

Permalink
Modify workflows to potentialy pass (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
Timotej979 committed Apr 11, 2024
1 parent 0e1ba06 commit 4befd49
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/dal_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,17 @@ jobs:
with:
python-version: 3.11

- name: Move to the ./backend directory
- name: Move to the ./Project/backend directory
run: cd ./Project/backend

- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
poetry config virtualenvs.in-project true --local &&
poetry install --only main
- name: Move to ./dal directory
- name: Move to ./Project/backend/dal directory
run: cd ./Project/backend/dal

- name: Run pytest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/e2e_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Move to ./Project directory
run: cd ./Project

- name: Build the services
run: docker compose build

Expand Down

0 comments on commit 4befd49

Please sign in to comment.