Skip to content

Commit e70dd06

Browse files
committed
tools\ci.sh: Add test_enum.py to the CI.
Signed-off-by: Ihor Nehrutsa <[email protected]>
1 parent 8edf766 commit e70dd06

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

python-stdlib/enum/manifest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
metadata(version="0.0.1")
1+
metadata(version="1.0.0")
22

33
module("enum.py")

python-stdlib/enum/enum_test.py python-stdlib/enum/test_enum.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,6 @@ class State(Direction):
8383
assert int(str(State(State.Ready))) == State.Ready
8484
assert int(str(State(State.Ready))) != State.Disabled
8585
print("will raise exception")
86-
del state.Triggered
86+
# del state.Triggered
87+
88+
print("OK")

tools/ci.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function ci_package_tests_run {
5454
python-stdlib/base64/test_base64.py \
5555
python-stdlib/binascii/test_binascii.py \
5656
python-stdlib/collections-defaultdict/test_defaultdict.py \
57-
python-stdlib/enum/enum_test.py \
57+
python-stdlib/enum/test_enum.py \
5858
python-stdlib/functools/test_partial.py \
5959
python-stdlib/functools/test_reduce.py \
6060
python-stdlib/heapq/test_heapq.py \

0 commit comments

Comments
 (0)