File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 44sync :
55 uv sync
66
7- # Run tests with coverage
7+ # Run tests with coverage (excludes integration tests)
88# Usage: make test
99# To run a specific test: make test TEST=test_file.py::test_function
1010test :
11- uv run pytest --cov-report term-missing --cov=openfga_sdk $(if $(TEST ) ,$(TEST ) ,test/)
11+ uv run pytest -m " not integration " - -cov-report term-missing --cov=openfga_sdk $(if $(TEST ) ,$(TEST ) ,test/)
1212
1313test-integration :
1414 uv run pytest -m integration --cov-report term-missing --cov=openfga_sdk $(if $(TEST ) ,$(TEST ) ,test/)
@@ -33,7 +33,8 @@ check: lint fmt test
3333doc :
3434 @echo " Available targets:"
3535 @echo " sync - Install/update dependencies"
36- @echo " test - Run tests with coverage (use TEST=path.to.test to run specific tests)"
36+ @echo " test - Run tests with coverage (excludes integration tests, use TEST=path.to.test to run specific tests)"
37+ @echo " test-integration - Run integration tests with coverage"
3738 @echo " lint - Run linter checks"
3839 @echo " fmt - Format code"
3940 @echo " fix - Fix fixable linting and formatting issues"
You can’t perform that action at this time.
0 commit comments