Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amalshaji committed Feb 25, 2024
1 parent 7301e99 commit 8c13aa5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/portr-admin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python3 -m venv .venv
export PATH=".venv/bin:$PATH"
python3 -m venv .venv
. .venv/bin/activate
sed '/-e/d' requirements.lock > requirements.txt && pip install --no-cache-dir -r requirements.txt
sed '/-e/d' requirements-dev.lock > requirements-dev.txt && pip install --no-cache-dir -r requirements-dev.txt
sed '/-e/d' requirements.lock > requirements.txt && python -m pip install --no-cache-dir -r requirements.txt
sed '/-e/d' requirements-dev.lock > requirements-dev.txt && python -m pip install --no-cache-dir -r requirements-dev.txt
- name: Test with pytest
run: |
pytest

0 comments on commit 8c13aa5

Please sign in to comment.