Skip to content

Commit

Permalink
feat: define debug targets for test with and without compression
Browse files Browse the repository at this point in the history
  • Loading branch information
doudou committed Aug 22, 2023
1 parent c924b22 commit 5690de0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(tools/syskit-log): run current file (no compression)",
"type": "Ruby",
"request": "launch",
"program": "${file}",
"includes": ["lib", "test"]
},
{
"name": "(tools/syskit-log): run current file (compression)",
"type": "Ruby",
"request": "launch",
"program": "${file}",
"includes": ["lib", "test"],
"env": {
"SYSKIT_LOG_TEST_COMPRESS": "1"
}
}]
}

0 comments on commit 5690de0

Please sign in to comment.