File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,12 @@ jobs:
36
36
run : uv sync --all-extras --dev
37
37
38
38
- name : Run tests
39
- run : uv run python -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
39
+ run : uv run python -Xutf8 - m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
40
40
41
41
- name : Run isolated tests
42
42
run :
43
- uv run python -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests_isolated
43
+ uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml
44
+ tests_isolated
44
45
45
46
- name : Upload test results to Codecov
46
47
if : ${{ !cancelled() }}
Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ typecheck: ## Perform type checking
33
33
.PHONY : test
34
34
test : # # Test the code with pytest.
35
35
@echo " 🚀 Testing code: Running pytest"
36
- @uv run python -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
37
- @uv run python -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests_isolated
36
+ @uv run python -Xutf8 - m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
37
+ @uv run python -Xutf8 - m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests_isolated
38
38
39
39
.PHONY : docs-test
40
40
docs-test : # # Test if documentation can be built without warnings or errors
You can’t perform that action at this time.
0 commit comments