mirror of
https://github.com/venthur/blag.git
synced 2025-11-25 20:52:43 +00:00
rely on makefile again
This commit is contained in:
5
.github/workflows/python-package.yaml
vendored
5
.github/workflows/python-package.yaml
vendored
@@ -28,11 +28,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
# - name: Install dependencies
|
|
||||||
# run: |
|
|
||||||
# pip install -r requirements.txt
|
|
||||||
# pip install -r requirements-dev.txt
|
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
make test
|
make test
|
||||||
|
|||||||
3
Makefile
3
Makefile
@@ -1,12 +1,11 @@
|
|||||||
# system python interpreter. used only to create virtual environment
|
# system python interpreter. used only to create virtual environment
|
||||||
PY = python3
|
PY = python3
|
||||||
VENV = venv
|
VENV = venv
|
||||||
|
BIN=$(VENV)/bin
|
||||||
|
|
||||||
ifeq ($(OS), Windows_NT)
|
ifeq ($(OS), Windows_NT)
|
||||||
BIN=$(VENV)/Scripts
|
BIN=$(VENV)/Scripts
|
||||||
PY=python
|
PY=python
|
||||||
else
|
|
||||||
BIN=$(VENV)/bin
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user