-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from alichtman/integration_testing
- Loading branch information
Showing
21 changed files
with
714 additions
and
321 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.MP4 filter=lfs diff=lfs merge=lfs -text | ||
*.mp4 filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
/target | ||
output | ||
tests/working_test_data | ||
tests/real_videos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,81 @@ | ||
{ | ||
// 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": [ | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug in test", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--bin=gopro-chaptered-video-assembler", | ||
"--package=gopro-chaptered-video-assembler" | ||
], | ||
"filter": { | ||
"name": "gopro-chaptered-video-assembler", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": ["-i", "tests/working_test_data", "-o", "tests/output"], | ||
"cwd": "${workspaceFolder}", | ||
"env": { | ||
"RUST_BACKTRACE": "1" | ||
} | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug in apostrophe", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--bin=gopro-chaptered-video-assembler", | ||
"--package=gopro-chaptered-video-assembler" | ||
], | ||
"filter": { | ||
"name": "gopro-chaptered-video-assembler", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": ["-i", "tests/working_test_data/Test's Apostrophe", "-o", "tests/output"], | ||
"cwd": "${workspaceFolder}", | ||
"env": { | ||
"RUST_BACKTRACE": "1" | ||
} | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in executable 'gopro-chaptered-video-assembler'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--bin=gopro-chaptered-video-assembler", | ||
"--package=gopro-chaptered-video-assembler" | ||
], | ||
"filter": { | ||
"name": "gopro-chaptered-video-assembler", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
// 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": [ | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug in test", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--bin=gopro-chaptered-video-assembler", | ||
"--package=gopro-chaptered-video-assembler" | ||
], | ||
"filter": { | ||
"name": "gopro-chaptered-video-assembler", | ||
"kind": "bin" | ||
} | ||
] | ||
} | ||
}, | ||
"args": [ | ||
"--input", | ||
"/home/alichtman/Desktop/Development/projects/gopro-chaptered-video-assembler/tests/data/real_videos", | ||
"--output", | ||
"/home/alichtman/Desktop/Development/projects/gopro-chaptered-video-assembler/tests/data/actual_output", | ||
"--yes", | ||
"--copy-single-chapter-instead-of-rename" | ||
], | ||
"cwd": "${workspaceFolder}", | ||
"env": { | ||
"RUST_BACKTRACE": "full" | ||
} | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug in apostrophe", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--bin=gopro-chaptered-video-assembler", | ||
"--package=gopro-chaptered-video-assembler" | ||
], | ||
"filter": { | ||
"name": "gopro-chaptered-video-assembler", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": [ | ||
"-i", | ||
"tests/working_test_data/Test's Apostrophe", | ||
"-o", | ||
"tests/output" | ||
], | ||
"cwd": "${workspaceFolder}", | ||
"env": { | ||
"RUST_BACKTRACE": "1" | ||
} | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in executable 'gopro-chaptered-video-assembler'", | ||
"cargo": { | ||
"args": [ | ||
"test", | ||
"--no-run", | ||
"--bin=gopro-chaptered-video-assembler", | ||
"--package=gopro-chaptered-video-assembler" | ||
], | ||
"filter": { | ||
"name": "gopro-chaptered-video-assembler", | ||
"kind": "bin" | ||
} | ||
}, | ||
"args": [], | ||
"cwd": "${workspaceFolder}" | ||
} | ||
] | ||
} |
Oops, something went wrong.