-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
making run_all.py, running all .py files with demo in title, adding t…
…o build_and_test.sh
- Loading branch information
1 parent
3ea2802
commit 178448c
Showing
3 changed files
with
9 additions
and
19 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import pathlib | ||
|
||
p = pathlib.Path('run_all.py').parent | ||
|
||
for file in p.glob('*demo*.py'): | ||
with open(file) as f: | ||
exec(f.read()) | ||
print('{} ran successfully'.format(f)) |
This file was deleted.
Oops, something went wrong.