diff options
| author | Greg Hogan <code@greghogan.com> | 2025-12-29 17:34:28 +0000 |
|---|---|---|
| committer | Greg Hogan <code@greghogan.com> | 2026-01-21 14:10:41 +0000 |
| commit | 11f9ab1d82fba93f02bb4c2f96a08f580381b189 (patch) | |
| tree | 4a871f6c600592c93a47584fad677022a0c5c21d | |
| parent | 6a483ed7c607b01003edb9cb118c9f89c9d457e9 (diff) | |
gnu: python-jupytext: Fix tests.
* gnu/packages/jupyter.scm (python-jupytext)
[arguments]<#:tests-flags>: Deselect additional test.
Change-Id: Ic65500b6e5d9da2644bdbb16c6ceae0e573a7936
| -rw-r--r-- | gnu/packages/jupyter.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm index 2c540fc208f..35521805961 100644 --- a/gnu/packages/jupyter.scm +++ b/gnu/packages/jupyter.scm @@ -219,7 +219,7 @@ simulation, statistical modeling, machine learning and much more.") (build-system pyproject-build-system) (arguments (list - ;; tests: 4017 passed, 173 skipped, 2 deselected, 1 warning + ;; tests: 4016 passed, 173 skipped, 3 deselected, 1 warning #:test-flags #~(list ;; Requires git. @@ -231,7 +231,10 @@ simulation, statistical modeling, machine learning and much more.") "::test_check_source_is_newer_when_using_jupytext_to") ;; Failed: DID NOT RAISE <class 'jupytext.cli.SynchronousModificationError'>. (string-append "--deselect=tests/functional/cli/test_synchronous_changes.py" - "::test_jupytext_to_raises_on_synchronous_edits")) + "::test_jupytext_to_raises_on_synchronous_edits") + ;; Failed: DID NOT RAISE <class 'jupytext.cli.SynchronousModificationError'>. + (string-append "--deselect=tests/functional/cli/test_synchronous_changes.py" + "::test_jupytext_sync_raises_on_synchronous_edits")) #:phases #~(modify-phases %standard-phases (add-before 'check 'pre-check |
