Skip to content

Commit

Permalink
Merge pull request #175 from sot/no-sync-32
Browse files Browse the repository at this point in the history
Skip sync tests on 32-bit platform (version 4.45.1)
  • Loading branch information
taldcroft authored Sep 30, 2019
2 parents 9fa6993 + 9b066f1 commit 92bc996
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ test/eng_archive
test/*.tar.gz
test/regr_vals.*
build
data
/data*
dist
doc/_build
www
Expand All @@ -21,3 +21,6 @@ dev_utils/event_filter_1.png
dev_utils/event_filter_2.png
dev_utils/l0_5icd.pdf
dev_utils/memleak.py
*.ipynb
.ipynb_checkpoints
.idea
3 changes: 3 additions & 0 deletions Ska/engarchive/tests/test_sync.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import sys
import os
import pickle
import shutil
Expand All @@ -13,6 +14,8 @@
from .. import update_client_archive, update_server_sync
from ..utils import STATS_DT, set_fetch_basedir

pytestmark = pytest.mark.skipif(sys.maxsize <= 2 ** 32, reason="tests for 64-bit only")

# Covers safe mode and IRU swap activities around 2018:283. This is a time
# with rarely-seen telemetry.
START, STOP = '2018:281', '2018:293'
Expand Down
2 changes: 1 addition & 1 deletion Ska/engarchive/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# SET THESE VALUES
############################
# Major, Minor, Bugfix, Dev
VERSION = (4, 45, None, False)
VERSION = (4, 45, 1, False)


class SemanticVersion(object):
Expand Down

0 comments on commit 92bc996

Please sign in to comment.