Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Commit feb23e7

Browse files
author
Release Manager
committed
Trac #33578: Add VS code config for debugging doctests
Add VS code launch config that allows running and debugging doctests in an active file. To test (should work on gitpod as well): - Open some python file - Go to "Run & Debug" tab by clicking the play symbol with the little bug on it on the very left (or Ctrl + Shift + D) - Next to the green play button at the top, select "Sage: Test" from the dropdown, then click the play button. URL: https://trac.sagemath.org/33578 Reported by: gh-tobiasdiez Ticket author(s): Tobias Diez Reviewer(s): Matthias Koeppe
2 parents 68a7652 + fc401f9 commit feb23e7

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.vscode/launch.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@
88
"program": "${file}",
99
"console": "integratedTerminal",
1010
"justMyCode": false
11+
},
12+
{
13+
"name": "Sage: Test",
14+
"type": "python",
15+
"request": "launch",
16+
"program": "${workspaceFolder}/src/bin/sage-runtests",
17+
"args": [
18+
"--verbose",
19+
"${file}"
20+
],
21+
"console": "integratedTerminal",
22+
"justMyCode": false
1123
}
1224
],
1325
}

build/pkgs/configure/checksums.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=795d66c6d16d105e93f33306d354d021906c2144
3-
md5=496166d2e65afd07d04d7e08e10dddf2
4-
cksum=1205587147
2+
sha1=e11416ff1fbc71f612b6ffcd01376ed043611cf0
3+
md5=cc5d341921b9aea2ae33d8ba2227daf5
4+
cksum=3415160552
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6b15135163c6fddbecf04d47fae93ec0c085564b
1+
164a46b53a900a8d82cc270f01952556fed42ba4

0 commit comments

Comments
 (0)