File tree Expand file tree Collapse file tree 3 files changed +25
-6
lines changed Expand file tree Collapse file tree 3 files changed +25
-6
lines changed Original file line number Diff line number Diff line change 19
19
20
20
env :
21
21
run_coverage : ${{ github.ref == 'refs/heads/main' }}
22
-
22
+
23
+ outputs :
24
+ coverage : ${{ steps.stats.outputs.coverage }}
25
+
23
26
steps :
24
27
- uses : actions/checkout@v2
25
28
46
49
choco install wget --no-progress
47
50
wget https://github.com/openslide/openslide-winbuild/releases/download/v20221217/openslide-win64-20221217.zip
48
51
7z x openslide-win64-20221217.zip -oD:\openslide\
49
- mklink /D D :\openslide-win64\ D:\openslide\openslide-win64-20221217\
50
- cd D :\openslide-win64\
52
+ mklink /D C :\openslide-win64\ D:\openslide\openslide-win64-20221217\
53
+ cd C :\openslide-win64\
51
54
dir
52
55
set openslide_path=%cd%
53
56
echo %openslide_path%
74
77
pytest -v --cov=tiledb --cov-report=term-missing --durations=0 tests/ > coverage.txt
75
78
exit_code=$?
76
79
TEST_COVERAGE="$(grep '^TOTAL' coverage.txt | awk -v N=4 '{print $N}')"
77
- echo "COVERAGE =$TEST_COVERAGE" >> $GITHUB_OUTPUT
80
+ echo "coverage =$TEST_COVERAGE" >> $GITHUB_OUTPUT
78
81
exit $exit_code
79
82
if : ${{ matrix.sys.os != 'windows-latest' }}
80
83
@@ -101,6 +104,6 @@ jobs:
101
104
gistID : 32d48185733a4e7375e80e3e35fab452
102
105
filename : gist_bioimg.json
103
106
label : Test Coverage
104
- message : ${{ steps.stats.outputs.COVERAGE }}
107
+ message : ${{ steps.stats.outputs.coverage }}
105
108
color : green
106
109
namedLogo : pytest
Original file line number Diff line number Diff line change @@ -38,6 +38,22 @@ Python package for:
38
38
39
39
pip install -e '.[full]'
40
40
41
+ ## Windows Installation
42
+
43
+ After installing ` Openslide ` you should make sure that you create a link between your installation path and
44
+ the following default path ` C:\openslide-win64\ ` .
45
+
46
+ ``` cmd
47
+ mklink /D C:\openslide-win64\ [your-installation-path]\openslide-win64-20221217\
48
+ ```
49
+
50
+ You can install the latest versions of ` Openslide ` for windows using the pre-built packages
51
+ found in the project's github page:
52
+ ` https://github.com/openslide/openslide-bin/releases `
53
+
54
+ or in their website:
55
+ ` https://openslide.org/download/ `
56
+
41
57
42
58
## Examples
43
59
How to convert imaging data from standard biomedical formats to group of TileDB arrays.
Original file line number Diff line number Diff line change 2
2
DATASET_TYPE = "bioimg"
3
3
DEFAULT_SCRATCH_SPACE = "/dev/shm"
4
4
# Windows use only
5
- WIN_OPENSLIDE_PATH = r"D :\openslide-win64\bin"
5
+ WIN_OPENSLIDE_PATH = r"C :\openslide-win64\bin"
You can’t perform that action at this time.
0 commit comments