Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 768 Bytes

README.md

File metadata and controls

40 lines (30 loc) · 768 Bytes

Documentation

Documentation about the technologies used in the project.

Github Workflows

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

Pytest

Test the following packages has been installed

    packages=["yaml","tox","pytest"]
    for package in packages:
        assert __import__(package)

Tox

For more information check the tox.ini file.

tox