Documentation about the technologies used in the project.
Runs the suggested function with the help of Github Workflows.
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
- name: Install tox and any other packages
run: pip install -r requirements.txt
- name: Run Pytest
run: pytest tests/
- name: Run Tox
run: tox
- name: Run Poetry
run: poetry install
Test the following packages has been installed
packages=["yaml","tox","pytest"]
for package in packages:
assert __import__(package)
For more information check the tox.ini
file.
tox