Skip to content

Commit 72452d8

Browse files
Merge branch 'master' into issue_#1025_shorten_unittests
2 parents 9f63173 + e40db42 commit 72452d8

489 files changed

Lines changed: 65978 additions & 44566 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dvc/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/config.local
2+
/tmp
3+
/cache

.dvc/config

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[core]
2+
remote = minio
3+
['remote "minio"']
4+
url = s3://imod-python-test-data
5+
endpointurl = https://s3.deltares.nl

.dvcignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Add patterns of files dvc should ignore, which could improve
2+
# the performance. Learn more at
3+
# https://dvc.org/doc/user-guide/dvcignore
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[Bug] - <Descriptive title>"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Bug description**
11+
A clear and concise description of what the bug is.
12+
13+
**Steps to reproduce**
14+
1. What error message do you get?
15+
2. Can you create a minimum reproducible example?
16+
- Can you create a small script that reproduces the error?
17+
- OR if you have a complex model: Clip a small part out of it which
18+
reproduces the error, see [the ``clip_box``
19+
method](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Modflow6Simulation.clip_box.html).
20+
Then dump the clipped model [with the dump
21+
method](https://deltares.github.io/imod-python/api/generated/mf6/imod.mf6.Modflow6Simulation.dump.html).
22+
You can attach these files to the issue.
23+
24+
**Desktop (please complete the following information):**
25+
- OS: [e.g. Windows 11]
26+
- iMOD Python Version [e.g. 0.18.0]
27+
28+
**Additional context**
29+
Add any other context about the problem here. The more information you can
30+
provide us, the quicker we respond and fix the problem.

.github/ISSUE_TEMPLATE/custom.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Custom issue template
3+
about: Describe this issue template's purpose here.
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[FEATURE] - <descriptive title>"
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. For example: "I'm always frustrated when [...]"
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/pull_request_template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ Before requesting review, please go through this checklist:
1818
- [ ] PR title starts with ``Issue #nr``, e.g. ``Issue #737``
1919
- [ ] Unit tests were added
2020
- [ ] **If feature added**: Added/extended example
21+
- [ ] **If feature added**: Added feature to API documentation
22+
- [ ] **If pixi.lock was changed**: Ran `pixi run generate-sbom` and committed changes
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Sync Repository to GitLab
2+
3+
on:
4+
push
5+
6+
jobs:
7+
sync:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
with:
12+
fetch-depth: 0
13+
- name: Sync to GitLab
14+
uses: yesolutions/mirror-action@1708f16cdb28634fd3ba10c5c79abc91f5578a14
15+
with:
16+
REMOTE: https://open-git.deltares.nl/deltares-github-backups/${{ github.event.repository.name }}.git
17+
GIT_USERNAME: ${{ secrets.GITLAB_USERNAME }}
18+
GIT_PASSWORD: ${{ secrets.GITLAB_PAT }}

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ nosetests.xml
4747
coverage.xml
4848
*.cover
4949
.hypothesis/
50+
imod/tests/.imod_data/
5051

5152
# Translations
5253
*.mo
@@ -137,6 +138,10 @@ examples/user-guide/*
137138
examples/visualize/*
138139
examples/data
139140
!examples/**/*.py
141+
140142
# pixi environments
141143
.pixi
142144

145+
/imod/tests/mydask.png
146+
/imod/tests/*_report.xml
147+
docs/sg_execution_times.rst

.sonarcloud.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
sonar.projectKey=Deltares_imod-python
2+
sonar.organization=deltares
3+
sonar.exclusions=examples/**/*, imod/tests/**/*
4+
sonar.python.version=3.10, 3.11, 3.12, 3.13

0 commit comments

Comments
 (0)