Skip to content

Commit

Permalink
Avoid installing venv on github actions server
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-piles committed Oct 7, 2024
1 parent d4d0fd1 commit cec97d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
- name: Free up space
run: make free_up_space

- name: Install venv
run: make install_venv
- name: Install dependencies
run: pip3 install black pytest

- name: Lint with black
run: make check_format
run: black --line-length 125 . --check

- name: Start service
run: make start_detached
Expand All @@ -43,4 +43,4 @@ jobs:
interval: 500

- name: Test with unittest
run: make test
run: cd src; python3 -m pytest

0 comments on commit cec97d6

Please sign in to comment.