Skip to content

Commit 16e0ef1

Browse files
committed
fix: stop testing remix_tree_pretty/moderation status
the jeffalo api for moderation status is currently down. This is presumably because of the removal of the remix tree.
1 parent f5a2f58 commit 16e0ef1

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

tests/test_project.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ def test_project():
1313

1414

1515
project = sess.connect_project(104)
16-
tree = project.remix_tree_pretty()
17-
assert len(tree) > 1000 # there is a lot of chars. Just assert that sth is generated
16+
# tree = project.remix_tree_pretty()
17+
# assert len(tree) > 1000 # there is a lot of chars. Just assert that sth is generated
1818

1919
project = sess.connect_project(1209355136)
2020

@@ -59,14 +59,14 @@ def test_project():
5959
assert remix.author_name == "ScratchAttachV2"
6060
assert remix.embed_url == "https://scratch.mit.edu/projects/1209582809/embed"
6161

62-
assert sess.connect_project(414601586).moderation_status() == "notsafe"
63-
assert sess.connect_project(1207314193).moderation_status() == "safe"
64-
assert sess.connect_project(
65-
1233).moderation_status() == "notreviewed" # if this becomes reviewed, please update this
62+
# assert sess.connect_project(414601586).moderation_status() == "notsafe"
63+
# assert sess.connect_project(1207314193).moderation_status() == "safe"
64+
# assert sess.connect_project(
65+
# 1233).moderation_status() == "notreviewed" # if this becomes reviewed, please update this
6666
# ^^ also this project is an infinite remix loop!
6767

6868
assert sa.explore_projects()
6969
assert sa.search_projects(query="scratchattach")
7070

7171
if __name__ == '__main__':
72-
test_project()
72+
test_project()

0 commit comments

Comments
 (0)