-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove "test" script, use Makefile instead
We also drop some unused scripts: - clean-branches - vagrant-test
- Loading branch information
Showing
8 changed files
with
31 additions
and
268 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
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 |
---|---|---|
|
@@ -34,7 +34,6 @@ | |
# Testing. | ||
*.spyderproject | ||
.idea | ||
/.vagrant | ||
/sandbox | ||
/tests/assets | ||
/tests/samples |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,18 @@ | ||
#!/bin/bash | ||
|
||
# Exit as soon as something errors. | ||
set -e | ||
|
||
PYAV_ROOT=$PWD | ||
|
||
for name in $(find examples -name '*.py'); do | ||
echo | ||
echo === $name | ||
cd "$PYAV_ROOT" | ||
mkdir -p "sandbox/$1" | ||
cd "sandbox/$1" | ||
if ! python "$PYAV_ROOT/$name"; then | ||
echo FAILED $name with code $? | ||
exit $? | ||
fi | ||
done |
This file was deleted.
Oops, something went wrong.