Skip to content

Commit

Permalink
REvert to initial
Browse files Browse the repository at this point in the history
  • Loading branch information
mimisavage authored Oct 31, 2024
1 parent 730ef7b commit 164986f
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,41 +27,38 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
- name: Install dependencies for Data Handler
working-directory: ./apps/data_handler
run: |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
poetry lock --no-update
poetry install
- name: Run Tests for Data Handler
working-directory: ./apps/data_handler
run: |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
poetry shell
poetry run pytest
- name: Install dependencies for Shared
- name: Install pytest for Shared
working-directory: ./apps/shared
run: |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
poetry lock --no-update
poetry install
pip install pytest
- name: Run Tests for Shared
working-directory: ./apps/shared
run: |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
poetry shell
poetry run pytest .
pytest .

0 comments on commit 164986f

Please sign in to comment.