Skip to content

Commit 71e8172

Browse files
committed
db cicd
1 parent 155d973 commit 71e8172

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/ci-cd.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,14 @@ jobs:
215215
run:
216216
shell: bash -l {0}
217217
steps:
218-
- uses: actions/checkout@v2
218+
- name: Install dependencies
219+
run: |
220+
sudo apt-get update
221+
sudo apt-get install clang qt6-base-dev libglvnd-dev libeigen3-dev zlib1g-dev libfftw3-dev ninja-build
222+
223+
- name: Checkout code
224+
uses: actions/checkout@v2
225+
219226
- name: Download version file
220227
uses: actions/download-artifact@v2
221228
with:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ test = [
5050
"pytest-xdist",
5151
"pytest-rerunfailures",
5252
"codecov",
53+
"fileformats-medimage_mrtrix3-extras",
5354
]
5455

5556
[tool.hatch.version]

related-packages/fileformats-extras/pyproject.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ requires-python = ">=3.8"
1010
dependencies = [
1111
"fileformats >= 0.8",
1212
"fileformats-medimage-mrtrix3",
13+
"medimages4tests",
1314
"pydra >= 0.22.0",
1415
]
1516
license = { file = "LICENSE" }
@@ -34,13 +35,7 @@ dynamic = ["version"]
3435

3536
[project.optional-dependencies]
3637
dev = ["black", "pre-commit", "codespell", "flake8", "flake8-pyproject"]
37-
test = [
38-
"pytest >=6.2.5",
39-
"pytest-env>=0.6.2",
40-
"pytest-cov>=2.12.1",
41-
"medimages4tests",
42-
"codecov",
43-
]
38+
test = ["pytest >=6.2.5", "pytest-env>=0.6.2", "pytest-cov>=2.12.1", "codecov"]
4439

4540
converters = []
4641

0 commit comments

Comments
 (0)