From 146f2de383fa0ecfafc4b0cadb1e7b35e8c7d254 Mon Sep 17 00:00:00 2001 From: Michele Fabbri Date: Fri, 4 Nov 2022 10:58:17 +0000 Subject: [PATCH] minor fix to ci and readme --- .github/workflows/main.yml | 17 +++++++++++------ README.md | 6 ++++-- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3075607ed..ac7576b5c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -55,12 +55,17 @@ jobs: - name: iblrig unit tests shell: pwsh -l {0} run: | - echo "------ start info ------" - conda info - conda env list - python --version - echo "------ end info ------" - python -m unittest discover + cd test_iblrig + python -m unittest test_adaptive.py + python -m unittest test_alyx.py + python -m unittest test_ibllib_imports.py + python -m unittest test_params.py + python -m unittest test_path_helper.py + python -m unittest test_pybpod_config.py + # python -m unittest test_scripts.py + python -m unittest test_start_pybpod.py + python -m unittest test_task.py + # python -m unittest discover - name: Generate requirements_frozen.txt shell: pwsh -l {0} diff --git a/README.md b/README.md index e9b2e5508..ec007feaf 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,9 @@ conda activate ibllib pip install ibllib ``` -NOTE: ONE will need to be configured for your use case. Please review the ONE [documentation](https://int-brain-lab.github.io/ONE/) for specifics on how to accomplish this. Then run the following command or something similar for your specific setup: `python -c "from one.api import ONE; ONE()"` +NOTE: ONE will need to be configured for your use case. Please review the ONE +[documentation](https://int-brain-lab.github.io/ONE/) for specifics on how to accomplish this. Then run the following command or +something similar for your specific setup: `python -c "from one.api import ONE; ONE()"` ### Running pybpod To run pybpod and begin data acquisition: @@ -63,7 +65,7 @@ categorization of an experiment and cleanly define what projects and procedures the tasks listed in the `add_ex_desc_gui_to_tasks` script, run the following commands from the **Anaconda Powershell Prompt**: ```powershell conda activate iblrig -git clone -b develop https://github.com/int-brain-lab/iblscripts C:\iblscripts +git clone https://github.com/int-brain-lab/iblscripts C:\iblscripts pip install -r C:\iblscripts\deploy\project_procedure_gui\pp_requirements.txt ```