1 parent 97bd3be commit fa03b3eCopy full SHA for fa03b3e
3 files changed
.github/workflows/test.yml
@@ -64,7 +64,7 @@ jobs:
64
- name: Install dependencies
65
run: |
66
python -m pip install --upgrade pip
67
- pip install pyright
+ pip install pyright pytest
68
pip install -e .
69
- name: Run pyright
70
run: pyright
pyproject.toml
@@ -52,4 +52,5 @@ lint.ignore = [
52
dev = [
53
"pytest>=8.4.2",
54
"tox>=4.30.3",
55
+ "tzdata; sys_platform == 'win32'",
56
]
tox.ini
@@ -15,5 +15,6 @@ python =
15
deps =
16
# Install tzdata for support zoneinfo on Windows
17
tzdata; platform_system == "Windows"
18
+ pytest
19
commands =
- python -m unittest discover tests -v
20
0 commit comments