Make plant positions Point3d (#169) #303
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: [push] | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
- name: set up Poetry | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: "1.2.2" | |
- name: install dependencies | |
run: | | |
pip install -r requirements.txt | |
pip install pytest pytest-asyncio | |
- name: run pytests | |
env: | |
PYTHONPATH: ${{ github.workspace }} | |
run: pytest |