Skip to content
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

docs(tests): basic local testing docs #99

Merged
merged 2 commits into from Aug 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Expand Up @@ -108,3 +108,8 @@ typings/

# IDE files/dirs
.vscode

# Exclude python test artifacts
/act
/venv/*
/tests/functional/__pycache__/*
7 changes: 7 additions & 0 deletions 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
```