diff --git a/.gitignore b/.gitignore index 0814f4c..6a78ac2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ __pycache__ *.egg-info logs/ Translator-Tests/ +build/ +test_ars.log # PyCharms IDE metadata to be ignored .idea/ diff --git a/README.md b/README.md index 3d6d05e..0f86da8 100644 --- a/README.md +++ b/README.md @@ -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...): +- `mkdir logs` + Once everything is installed, you can call - `test-harness -h` to see available options diff --git a/requirements-runners.txt b/requirements-runners.txt index fcb1920..8ad23bc 100644 --- a/requirements-runners.txt +++ b/requirements-runners.txt @@ -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 diff --git a/requirements.txt b/requirements.txt index 173bd1e..0a7d391 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ httpx==0.25.0 pydantic==1.10.13 +tqdm==4.66.1