Skip to content

Commit

Permalink
Closes #1672: Temporarily change test_randint_randomness not to run (#…
Browse files Browse the repository at this point in the history
…1673)

This PR (Closes #1672):
- Changes the name of `test_randint_randomness` to `randint_randomness` which will cause the test to not run

Co-authored-by: Pierce Hayes <[email protected]>
  • Loading branch information
stress-tess and Pierce Hayes authored Aug 10, 2022
1 parent 8ff5d48 commit 9a4427a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/pdarray_creation_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,9 @@ def test_clobber(self):
self.assertTrue(np.all(a == i + 1))
self.assertTrue(np.all(npa == i + 1))

def test_randint_randomness(self):
def randint_randomness(self):
# THIS TEST DOES NOT RUN, see Issue #1672
# To run rename to `test_randint_randomness`
minVal = 0
maxVal = 2**32
size = 250
Expand Down

0 comments on commit 9a4427a

Please sign in to comment.