Skip to content

Commit

Permalink
feat: add support for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Deuchnord committed Dec 16, 2023
1 parent 479b866 commit f4952d0
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- '3.8'
- '3.9'
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ black:

.PHONY: tests
tests:
LANG=C python3 -m poetry run pytest tests/*.py
python3 -m poetry run pytest tests/

.PHONY: build
build:
Expand Down
2 changes: 1 addition & 1 deletion tests/dates.py → tests/test_dates.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

from .utils import execute, KOSMORRO
from .test_utils import execute, KOSMORRO


def test_with_date():
Expand Down
2 changes: 1 addition & 1 deletion tests/general.py → tests/test_general.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3

from sys import version_info as python_version
from .utils import (
from .test_utils import (
execute,
KOSMORRO,
CURRENT_MOON_PHASE_PATTERN,
Expand Down
2 changes: 1 addition & 1 deletion tests/output.py → tests/test_output.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

from .utils import (
from .test_utils import (
execute,
KOSMORRO,
)
Expand Down
2 changes: 1 addition & 1 deletion tests/position.py → tests/test_position.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

from .utils import (
from .test_utils import (
execute,
KOSMORRO,
)
Expand Down
2 changes: 1 addition & 1 deletion tests/timezone.py → tests/test_timezone.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

from .utils import (
from .test_utils import (
execute,
KOSMORRO,
)
Expand Down
File renamed without changes.

0 comments on commit f4952d0

Please sign in to comment.