-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test ko * isolate assertion (very simple check here..) * test windows correctly * cleanup comment * ruff fix * update changelog * update changelog * fix for 3.12 * really cover in new test * drive supported only on 3.13 * check one * check two * correct is_windows in tests * correct is_windows in tests part 2 * use os path for path count * use os path for path count in display as well * use os path for path count in display as well * rm whitespace * rm unecc comment * Update tests/test_catalog.py * factor out function * typo * factor out --------- Co-authored-by: Pete Gadomski <[email protected]>
- Loading branch information
1 parent
360081f
commit 97f87cb
Showing
8 changed files
with
47 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ stdout* | |
/integration* | ||
.idea | ||
.vscode | ||
.actrc | ||
|
||
|
||
# Sphinx documentation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import os | ||
import sys | ||
|
||
|
||
def path_includes_drive_letter() -> bool: | ||
return ( | ||
sys.version_info.major >= 3 and sys.version_info.minor >= 13 and os.name == "nt" | ||
) |