Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Oct 5, 2024
1 parent 3f3b49d commit 6c17bd0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pydevd-tests-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
pip install PySide2 --no-warn-script-location
pip install "numpy<2" --force --no-warn-script-location
pip install cherrypy --no-warn-script-location
pip install gevent greenlet
pip install gevent==23.9.1 greenlet
- name: Install django
if: "!contains(matrix.name, 'py38')"
Expand Down
10 changes: 9 additions & 1 deletion tests_python/test_debugger_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -2134,7 +2134,15 @@ def numpy_small_array_file():
assert check in (
[{"special variables": ""}, {"dtype": "dtype('int32')"}, {"max": "2"}, {"min": "2"}, {"shape": "()"}, {"size": "1"}],
[{"special variables": ""}, {"dtype": "dtype('int64')"}, {"max": "2"}, {"min": "2"}, {"shape": "()"}, {"size": "1"}],
)
[
{"special variables": ""},
{"dtype": "dtype('int64')"},
{"max": "np.int64(2)"},
{"min": "np.int64(2)"},
{"shape": "()"},
{"size": "1"},
],
), "Found: %s" % (check,)

json_facade.write_continue()

Expand Down

0 comments on commit 6c17bd0

Please sign in to comment.