From b182784a680784b8b8ac09d8cad1a6c22e8a427e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Leplat?= <60394504+Rylern@users.noreply.github.com> Date: Thu, 24 Oct 2024 17:01:13 +0200 Subject: [PATCH] Install Openslide in tests + typo (#16) --- .github/workflows/tests.yml | 5 ++++- README.md | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 26a2e5d..c815592 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,9 +19,12 @@ jobs: - name: Set up python id: setup-python uses: actions/setup-python@v5 + + - name: Install Openslide + run: sudo apt install openslide-tools - name: Install - run: pip install .[test] + run: pip install .[test,openslide] - name: Run tests run: pytest diff --git a/README.md b/README.md index 3ccad3f..c2bc049 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ You can find the documentation on https://qupath.github.io/qubalab-docs/. This project contains the QuBaLab package in the `qubalab` folder. Take a look at the *Installation* section to install it. Some notebooks present in the `notebooks` folder show how to use the QuBaLab package. If you want to run them, you can take a look at the *Development* section. -If you just want to go through them, look at the [documentation](https://qupath.github.io/qubalab/notebooks.html). +If you just want to go through them, look at the [documentation](https://qupath.github.io/qubalab-docs/notebooks.html). ## Installation