-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
4 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,13 @@ | ||
This is meant to contain all the random python scripts we make for things like | ||
TD, alerting, revert tracking, etc. | ||
|
||
It was originally located in torchci/scripts but moved to here to separate the | ||
python from the javascript/typescript. | ||
|
||
To run these files without needing to modify `sys.path` in each file, either | ||
1. Run `pip install -e .` from within `tools/torchci`. The `-e` is important. | ||
2. Add to your `PYTHONPATH` env var via `export PYTHONPATH="${PYTHONPATH}:<repo root>/tools/torchci"`. | ||
3. Run every file as a module, ex `cd tools/torchci && python -m torchci.td.td_rockset_analysis`. | ||
|
||
The tests folder should contain all test related files and mirror the torchci | ||
folder. |