Skip to content

Commit

Permalink
Merge pull request #156 from simleo/fix_skip_test
Browse files Browse the repository at this point in the history
Fix test skip
  • Loading branch information
simleo authored Aug 4, 2023
2 parents 6743b44 + 3a690fe commit da70321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import datetime
import json
import os
import sys
import tempfile
import timeit
import uuid
Expand Down Expand Up @@ -98,7 +98,7 @@ def test_data_entities(test_data_dir):
assert set(_.id for _ in (file_, dataset, data_entity)) <= part_ids


@pytest.mark.skipif(os.name != "posix", reason="CI sometimes fails on macOS")
@pytest.mark.skipif(sys.platform == "darwin", reason="CI sometimes fails on macOS")
def test_data_entities_perf():
"""\
Test that adding a data entity happens in constant time.
Expand Down

0 comments on commit da70321

Please sign in to comment.