From 5cabcaa9ef46f1579d541959dab147000480d3c4 Mon Sep 17 00:00:00 2001 From: Keith Zantow Date: Mon, 16 Aug 2021 13:43:25 -0400 Subject: [PATCH] docs(tests): basic local testing docs (#99) Signed-off-by: Keith Zantow --- .gitignore | 5 +++++ tests/README.md | 7 +++++++ 2 files changed, 12 insertions(+) create mode 100644 tests/README.md 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 +```