Skip to content

Commit

Permalink
fixed paths in yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sangeethankumar committed Dec 12, 2023
1 parent e2e4fd1 commit 8442d33
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-scoreboard-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
- name: Install dependencies
run: |
cd commit-scoreboard
cd src/commit-scoreboard
python -m pip install --upgrade pip
pip install pytest behave hypothesis
pip install -r requirements.txt
- name: Test with behave
run: |
cd commit-scoreboard
cd src/commit-scoreboard
behave
- name: Test with pytest
run: |
cd commit-scoreboard
cd src/commit-scoreboard
python -m pytest
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: "3.11"
- name: Install dependencies
run: |
cd workshop-registration
cd src/workshop-registration
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -r requirements.txt
Expand All @@ -30,7 +30,7 @@ jobs:
TEST_GROUP_ID: ${{ secrets.ZOOM_GROUP_ID }}
TEST_USER_ID: ${{ secrets.ZOOM_USER_ID }}
run: |
cd workshop-registration
cd src/workshop-registration
python -m pytest
- name: Test with behave
env:
Expand All @@ -40,9 +40,9 @@ jobs:
TEST_GROUP_ID: ${{ secrets.ZOOM_GROUP_ID }}
TEST_USER_ID: ${{ secrets.ZOOM_USER_ID }}
run: |
cd workshop-registration
cd src/workshop-registration
behave
- name: Test with mypy
run: |
cd workshop-registration
cd src/workshop-registration
mypy .

0 comments on commit 8442d33

Please sign in to comment.