Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebase to run unittests on refactoring #619

Closed
wants to merge 37 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a9a23b9
Bump sqlparse from 0.4.4 to 0.5.0 (#558)
dependabot[bot] Apr 22, 2024
36eb46f
Bump tqdm from 4.66.1 to 4.66.3 (#569)
dependabot[bot] May 4, 2024
fa7f0f1
Bump werkzeug from 3.0.1 to 3.0.3 (#570)
dependabot[bot] May 7, 2024
a05fcd5
Bump jinja2 from 3.1.3 to 3.1.4 (#571)
dependabot[bot] May 7, 2024
b2fc3e6
Bump mlflow from 2.10.1 to 2.12.1 (#575)
dependabot[bot] May 17, 2024
495d5b9
Bump gunicorn from 21.2.0 to 22.0.0 (#576)
dependabot[bot] May 17, 2024
bdd102a
Bump requests from 2.31.0 to 2.32.0 (#578)
dependabot[bot] May 21, 2024
beccd4c
[CI] Run tests through GitHub Actions (#573)
NicolasGensollen May 22, 2024
2861e9d
[CI] Skip tests when PR is in draft mode (#592)
NicolasGensollen May 23, 2024
f5de251
[CI] Test train workflow on GPU machine (#590)
NicolasGensollen May 23, 2024
69b3538
[CI] Port remaining GPU tests to GitHub Actions (#593)
NicolasGensollen May 23, 2024
c9d9252
[CI] Remove GPU pipeline from Jenkinsfile (#594)
NicolasGensollen May 24, 2024
753f04e
[CI] Port remaining non GPU tests to GitHub Actions (#581)
NicolasGensollen May 24, 2024
c424d77
[CI] Remove jenkins related things (#595)
NicolasGensollen May 24, 2024
4281c73
add simulate-gpu option
thibaultdvx May 28, 2024
52d7561
Add flags to run CI tests locally (#596)
thibaultdvx May 30, 2024
39d22fd
[CI] Remove duplicated verbose flag in test pipelines (#598)
NicolasGensollen May 30, 2024
571662c
[DOC] Update the Python version used for creating the conda environme…
NicolasGensollen May 30, 2024
567467e
Merge remote-tracking branch 'upstream/dev' into dev
thibaultdvx May 30, 2024
d54d59c
Flag for local tests (#608)
thibaultdvx May 31, 2024
78f2928
Merge remote-tracking branch 'upstream/dev' into dev
thibaultdvx May 31, 2024
f20e7fb
Update quality_check.py (#609)
HuguesRoy Jun 4, 2024
f6f382a
Fix issue in compare_folders (#610)
thibaultdvx Jun 4, 2024
cd3a538
Merge remote-tracking branch 'upstream/dev' into dev
thibaultdvx Jun 4, 2024
f7eb225
Merge branch 'dev' into refactoring
thibaultdvx Jun 4, 2024
523563d
revert change on poetry
thibaultdvx Jun 4, 2024
4971fa7
correction of wrong conflict choice in rebasing
thibaultdvx Jun 4, 2024
c60d53c
Merge remote-tracking branch 'upstream/refactoring' into refactoring
thibaultdvx Jun 4, 2024
52f9492
[INFRA] Update the Makefile `check.lock` target (#603)
NicolasGensollen Jun 4, 2024
b0d3490
Merge remote-tracking branch 'upstream/dev' into dev
thibaultdvx Jun 5, 2024
02c4e30
Merge branch 'refactoring' of https://github.com/aramis-lab/clinicadl…
thibaultdvx Jun 6, 2024
95dc7f4
Merge remote-tracking branch 'upstream/refactoring' into refactoring
thibaultdvx Jun 7, 2024
996cdd5
[CI] Run unit tests and linter on refactoring branch (#618)
NicolasGensollen Jun 7, 2024
6166462
Merge remote-tracking branch 'upstream/dev' into dev
thibaultdvx Jun 7, 2024
e4ce5dc
Merge branch 'dev' into refactoring
thibaultdvx Jun 7, 2024
3b7763e
Merge remote-tracking branch 'upstream/refactoring' into refactoring
thibaultdvx Jun 7, 2024
752bc2b
remove outdated tests
thibaultdvx Jun 7, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: 'Lint codebase'

on:
pull_request:
branches: [ dev ]
branches: [ "dev", "refactoring" ]
push:
branches: [ dev ]
branches: [ "dev", "refactoring" ]

permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Test

on:
push:
branches: [dev]
branches: ["dev", "refactoring"]
pull_request:
branches: [dev]
branches: ["dev", "refactoring"]

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ help: Makefile

.PHONY: check.lock
check.lock:
@$(POETRY) lock --check
@$(POETRY) check --lock

## build : Build the package.
.PHONY: build
Expand Down
97 changes: 0 additions & 97 deletions tests/unittests/generate/test_hypo_config.py

This file was deleted.

Empty file.
Loading