Skip to content

Commit

Permalink
Don't skip skow tests for users
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Sep 9, 2024
1 parent 554beb2 commit 95982d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions exercises/practice/perfect-numbers/perfect-numbers-test.ys
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ test::
- name: Large perfect number is classified correctly
code: classify(33550336)
want: perfect
SKIP: true # SLOW

- name: Smallest abundant number is classified correctly
code: classify(12)
Expand All @@ -29,7 +28,6 @@ test::
- name: Large abundant number is classified correctly
code: classify(33550335)
want: abundant
SKIP: true # SLOW

- name: Smallest prime deficient number is classified correctly
code: classify(2)
Expand All @@ -46,7 +44,6 @@ test::
- name: Large deficient number is classified correctly
code: classify(33550337)
want: deficient
SKIP: true # SLOW

- name: Edge case (no factors other than itself) is classified correctly
code: classify(1)
Expand All @@ -62,4 +59,4 @@ test::
what: error
want: Classification is only possible for positive integers.

done: 10 # 13
done: 13
4 changes: 2 additions & 2 deletions exercises/practice/reverse-string/reverse-string-test.ys
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ test::
- name: Grapheme cluster with pre-combined form
code: reverse('Würstchenstand')
want: dnatsnehctsrüW
SKIP: true # UNSOLVED
SKIP: true # UNSOLVED in YAMLScript so far

- name: Grapheme clusters
code: reverse('ผู้เขียนโปรแกรม')
want: มรกแรปโนยขีเผู้
SKIP: true # UNSOLVED
SKIP: true # UNSOLVED in YAMLScript so far

done: 7 # 9

0 comments on commit 95982d1

Please sign in to comment.