Skip to content

Commit 9666903

Browse files
fix makefile
1 parent 10aeacb commit 9666903

File tree

3 files changed

+11
-34
lines changed

3 files changed

+11
-34
lines changed

Makefile

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
.PHONY: install build publish lint test integration_test coverage
22

33
install:
4-
poetry install
4+
@echo "🏠 Install project"
5+
uv sync
56

67
build:
7-
poetry build
8+
@echo "🏠 Build project"
9+
uv build
810

911
publish:
10-
poetry publish -r rd-ai-common-artifacts
12+
@echo "🏠 Publish project"
13+
uv publish --index rd-ai-common-artifacts
1114

1215
lint:
1316
@:
1417

15-
test:
16-
poetry run pytest tests
18+
test: lint
19+
@echo "🏠 Run tests"
20+
uv run pytest tests --verbose
1721

1822
coverage:
19-
poetry run pytest --cov=outsystems tests --cov-config .coveragerc --cov-report=html:coverage --cov-report=xml
23+
@echo "🏠 Run coverage"
24+
uv run pytest outsystems tests --cov=outsystems tests --cov-config .coveragerc --cov-report=html:coverage --cov-report=xml --cov-report=term

RELEASE.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

SECURITY.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)