-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
ce89267
commit caa4ba8
Showing
1 changed file
with
7 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,9 +1,15 @@ | ||
# ETF Autotest Parser | ||
|
||
Python program for parsing ETF autotest scripts (written in JSON). It produces a `.txt` output file where with all of the unit tests. | ||
## About | ||
|
||
Python program for parsing ETF autotest scripts. It produces a `.txt` output file with all of the unit tests and expected outputs. | ||
|
||
## Usage | ||
|
||
To use the program simply run the following command: | ||
|
||
```bash | ||
python etf-parse.py <filename> | ||
``` | ||
|
||
You should replace `<filename>` with the name of the file containing unit tests. By default this argument will be `autotest2`, so simply running `python etf-parse.py` will look for `autotest2` in the current directory. |