Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ test = [
"ipykernel",
"ipywidgets",
"matplotlib",
"mock",
"numpy",
"pandas",
"papermill",
Expand Down
6 changes: 1 addition & 5 deletions tests/app/execute_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@
import asyncio
import json
import re
from unittest import mock

import tornado.web

try:
from unittest import mock
except ImportError:
from unittest import mock


async def test_hello_world(http_server_client, base_url):
response = await http_server_client.fetch(base_url)
Expand Down