10000 Enable worker tests by antocuni · Pull Request #1757 · pyscript/pyscript · GitHub
[go: up one dir, main page]

Skip to content

Enable worker tests #1757

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Sep 27, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
kill this test, it doesn't make any sense
  • Loading branch information
antocuni committed Sep 26, 2023
commit 9ce044039ce09eef3a9030202d1f8c537da4f9b5
15 changes: 0 additions & 15 deletions pyscript.core/tests/integration/test_01_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,21 +331,6 @@ def test_python_version(self):
is not None
)

def test_assert_no_banners(self):
"""
Test that the DOM doesn't contain error/warning banners
"""
self.pyscript_run(
"""
<script type="py">
import sys
print("hello world", file=sys.stderr)
</script>
"""
)

assert self.page.locator(".py-error").inner_text() == "hello world"

@pytest.mark.skip("NEXT: works with <py-script> not with <script>")
def test_getPySrc_returns_source_code(self):
self.pyscript_run(
Expand Down
0