diff --git a/.gitignore b/.gitignore index 033f766c..a55947db 100644 --- a/.gitignore +++ b/.gitignore @@ -108,3 +108,8 @@ typings/ # IDE files/dirs .vscode + +# Exclude python test artifacts +/act +/venv/* +/tests/functional/__pycache__/* diff --git a/tests/README.md b/tests/README.md new file mode 100644 index 00000000..8ac216a6 --- /dev/null +++ b/tests/README.md @@ -0,0 +1,7 @@ +# Developing tests + +Current tests are written in Python 3 and will download [act](https://github.com/nektos/act) and create a Python virtual environment to run them in. To run these locally, from the root directory execute: +``` +npm run build +make check +```