From 98e124dfc17c3a3be61f0f39a534538e076d9770 Mon Sep 17 00:00:00 2001 From: Bastian Venthur Date: Fri, 12 Mar 2021 20:15:24 +0100 Subject: [PATCH] rely on makefile again --- .github/workflows/python-package.yaml | 5 ----- Makefile | 3 +-- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/python-package.yaml b/.github/workflows/python-package.yaml index f8b558c..de69432 100644 --- a/.github/workflows/python-package.yaml +++ b/.github/workflows/python-package.yaml @@ -28,11 +28,6 @@ jobs: with: python-version: ${{ matrix.python-version }} - # - name: Install dependencies - # run: | - # pip install -r requirements.txt - # pip install -r requirements-dev.txt - - name: Run tests run: | make test diff --git a/Makefile b/Makefile index 274ee8c..7dc2887 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,11 @@ # system python interpreter. used only to create virtual environment PY = python3 VENV = venv +BIN=$(VENV)/bin ifeq ($(OS), Windows_NT) BIN=$(VENV)/Scripts PY=python -else - BIN=$(VENV)/bin endif