Skip to content

Commit ac6fcdd

Browse files
committed
[REMOVE] Skip some slow tests.
1 parent 7065e09 commit ac6fcdd

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

tests/test_helpers_submissions_between.py

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def test_submissions_between_raises_correctly(self):
3939
@betamax()
4040
@teardown_on_keyboard_interrupt
4141
def test_submissions_between_order(self):
42+
assert False, 'skipping due to time constraints'
4243
all_subs = list(submissions_between(self.r,
4344
self.sr,
4445
highest_timestamp=time.time(),
@@ -67,6 +68,7 @@ def test_submissions_between_order(self):
6768
@betamax()
6869
@teardown_on_keyboard_interrupt
6970
def test_submissions_between_with_filters(self):
71+
assert False, 'skipping due to time constraints'
7072
all_subs = list(submissions_between(self.r,
7173
self.sr,
7274
verbosity=self.verbosity))

tests/test_oauth2_reddit.py

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def test_authorize_url(self):
4949
# @betamax() is currently broken for this test because the cassettes
5050
# are caching too aggressively and not performing a token refresh.
5151
def test_auto_refresh_token(self):
52+
assert False, 'skipping due to time constraints'
5253
self.r.refresh_access_information(self.refresh_token['identity'])
5354
old_token = self.r.access_token
5455

0 commit comments

Comments
 (0)