Adding level to visualize entity #97
Workflow file for this run
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- develop_carsten | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
# The following command allows to connect to the ci-container via ssh | |
# very useful for debugging | |
# move this step before the failing step | |
# source: https://github.com/marketplace/actions/debugging-with-tmate | |
# - name: Setup tmate session | |
# uses: mxschmitt/action-tmate@v3 | |
- name: Install pip | |
run: | | |
python -m pip install --upgrade pip | |
- name: debug env | |
run: | | |
echo "$PYERK_TEST_DATA_PARENT_PATH" | |
- name: Installing requirements | |
run: | | |
# install this package | |
pwd | |
pip install -r requirements.txt | |
- name: install pyerk | |
run: | | |
# install in editable mode -> simplify the discovery of the (internal) test data | |
pip install -e . | |
- name: run all tests | |
run: | | |
python -m unittest |