We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a94608 commit 6e24a05Copy full SHA for 6e24a05
Makefile
@@ -5,17 +5,14 @@ WHEEL_DIR ?= wheel_dist
5
PYTHON_VERSION?=3.13
6
7
COMPOSE=docker compose
8
+ON_PYTHON=$(COMPOSE) run --rm --build python
9
10
clean: ## cleans the build artifacts
11
rm -Rf build/ dist/ *.egg-info $(WHEEL_DIR)
12
.PHONY: clean
13
-install: ## install dependencies
14
- pip install .
15
-.PHONY: install
16
-
17
-test: install
18
- python -m unittest discover -vf
+test:
+ $(ON_PYTHON) ./scripts/test.sh
19
.PHONY: test
20
21
update-version:
scripts/test.sh
@@ -0,0 +1,5 @@
1
+#!/bin/sh
2
+
3
+pip install .
4
+python -m unittest discover -vf
0 commit comments