Skip to content

Commit

Permalink
Fix: Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Aug 14, 2024
1 parent d87deed commit 4a16eb7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make env
run: make env VENV=/usr
- name: Lint with Flake8
run: make lint
run: make lint VENV=/usr
- name: Test with pytest
run: make cover
run: make cover VENV=/usr
- name: Coveralls
run: coveralls
env:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
HERE = $(shell readlink -f `dirname .`)
VENVNAME = $(shell basename $(HERE))
VENV = $(HOME)/.virtualenvs/$(VENVNAME)
VENV := $(HOME)/.virtualenvs/$(VENVNAME)
PKG = $(VENVNAME)
PYTEST_FLAGS = -v
TEST_DIR = tests
Expand Down

0 comments on commit 4a16eb7

Please sign in to comment.