Skip to content

Commit

Permalink
Merge pull request astropy#10720 from astrofrog/test-skip-segfault
Browse files Browse the repository at this point in the history
Skip test on Python 3.6 due to random failure
  • Loading branch information
astrofrog committed Sep 16, 2020
1 parent 987c95c commit cd9b10a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion astropy/utils/tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ def update(i):
assert get_file_contents(f) == c2


@pytest.mark.skipif((3, 7) <= sys.version_info < (3, 8),
@pytest.mark.skipif(sys.version_info < (3, 8),
reason="causes mystery segfault! possibly bug #10008")
def test_update_parallel_multi(temp_cache, valid_urls):
u, c = next(valid_urls)
Expand Down

0 comments on commit cd9b10a

Please sign in to comment.