Skip to content

Commit

Permalink
Update for 1.0.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
adiroiban committed May 23, 2023
1 parent 99a080e commit b8277fb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/bare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,12 +221,19 @@ jobs:
./pythia.sh deps
./pythia.sh build
- name: Test
- name: Test normal
run: |
./pythia.sh test_ci2
./pythia.sh test normal
env:
CODECOV_TOKEN: enabled
USER: runneradmin

- name: Test elevated
run: |
./pythia.sh test elevated
env:
CODECOV_TOKEN: enabled
USER: runneradmin

- name: Tmate debug on failure
if: failure() && env.TMATE_DEBUG == 'yes'
Expand Down
4 changes: 3 additions & 1 deletion release-notes.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
Release notes for chevah.compat
===============================

1.0.8 - 2023-04-UNRELEAED
1.0.8 - 2023-05-23
--------------------

* Remove getFileMD5Sum and co functions.
* Remove mk.md5
* Add initial support for long file names.


1.0.7 - 2023-04-08
------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = chevah-compat
version = 1.0.7
version = 1.0.8
maintainer = Adi Roiban
maintainer_email = adi.roiban@proatria.com
license = BSD
Expand Down
2 changes: 1 addition & 1 deletion src/chevah_compat/tests/normal/test_filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ def test_getAttributes_link_not_found(self):
"""
Raise an OSError not found when target does not exists.
"""
path, link_segments = mk.fs.makePathInTemp()
path, link_segments = self.tempFile(win_encoded=True)
target_segments = ['c', 'no-such-parent', 'no-child', 'target']
mk.fs.makeLink(
target_segments=target_segments,
Expand Down

0 comments on commit b8277fb

Please sign in to comment.