Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/matrix-and-codecov-on-merge-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
project: diffpy.cmi
c_extension: false
headless: false
python_versions: "3.12, 3.13"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please could you remove this line. We have updated the release-scripts so this should pass tests without this now.

run: |
set -Eeuo pipefail
echo "Test cmds"
Expand Down
23 changes: 23 additions & 0 deletions news/windows-ci.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* <news item>

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* Removed matrix testing for Python 3.14.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this shouldn't show up in the changelog. These are all just short-term developer things that will go away when we upgrade to 3.14. If no other behavior is changed in this PR (I see something being added to the tests) then this is a no-news news.


**Fixed:**

* <news item>

**Security:**

* <news item>
5 changes: 3 additions & 2 deletions tests/test_packsmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ def paths_and_names_match(expected, actual, root):
for (exp_name, exp_path), (act_name, act_path) in zip(expected, actual):
if exp_name != act_name:
return False
actual_rel_path = str(act_path.relative_to(root))
if actual_rel_path != exp_path:
actual_rel_path = act_path.relative_to(root).as_posix()
expected_path_norm = Path(exp_path).as_posix()
if actual_rel_path != expected_path_norm:
return False
return True

Expand Down
Loading