-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixed to make TestHarness full runnable (on my machine) #4
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ __pycache__ | |
*.egg-info | ||
logs/ | ||
Translator-Tests/ | ||
build/ | ||
test_ars.log | ||
|
||
# PyCharms IDE metadata to be ignored | ||
.idea/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,5 +21,8 @@ The Test Harness is a CLI that you need to install: | |
- `pip install -r requirements-runners.txt` to install the Test Runners | ||
- `pip install .` to install the Test Harness CLI | ||
|
||
Create a local 'logs' directory (the repository doesn't track or commit this...): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we add a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok, will do; seems to be there, though. I guess we would also take it out of the .gitignore file above? |
||
- `mkdir logs` | ||
|
||
Once everything is installed, you can call | ||
- `test-harness -h` to see available options |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
ARS_Test_Runner==0.0.2 | ||
ui-test-runner==0.0.1 | ||
|
||
# Dependency for the ui-test-runner | ||
# not automatically pulled in | ||
jq==1.6.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is my bad. This can be removed and the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks. I'll do that. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
httpx==0.25.0 | ||
pydantic==1.10.13 | ||
tqdm==4.66.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where does
build/
come from?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure. that's more common with Javascript builds, right - none here. I don't think it is relevant to this, unless the UI testing is somehow creating it, LOL. I'll try to remove it.