python_test #9
Workflow file for this run
This file contains hidden or 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: Python test | |
run-name: python_test | |
on: [push] | |
jobs: | |
Python-Test-Action: | |
runs-on: self-hosted | |
steps: | |
- run: cd ~/Desktop/blech_clust | |
- run: pwd | |
- run: which python | |
- run: conda info --envs | |
- name: Prefect SPIKE only test | |
working-directory: /home/abuzarmahmood/Desktop/blech_clust | |
run: python pipeline_testing/prefect_pipeline.py -s --raise | |
- name: Prefect EMG only test | |
working-directory: /home/abuzarmahmood/Desktop/blech_clust | |
run: python pipeline_testing/prefect_pipeline.py -e --raise | |
- name: Prefect SPIKE then EMG test | |
working-directory: /home/abuzarmahmood/Desktop/blech_clust | |
run: python pipeline_testing/prefect_pipeline.py --spike-emg --raise |