forked from rdmorganiser/rdmo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: use admin.register decorator * build: pin django-mptt dependency * fix: update verbose_name_plural in questionset * fix rdmorganiser#791 for openid_connect providers and refactor keycloak snippet * Add custom {more} markdown tag (rdmorganiser#595) * Adjust details/summary style * Add ValueConflictValidator and check for conflicts when storing values * Autosave after eraseValue and removeValue * Add tests for ValueConflictValidator * Fix human2bytes utils function * chore: refactor human2bytes utils func * Fix ValueQuotaValidator and add tests * Update HUMAN2BYTES_MAPPER and add test * Refactor progress bar and take sets and conditions into account (rdmorganiser#596) * Check is_optional for progress bar (again) * Add progress_count and progress_total to Project model, compute on POST when using the API and add progress to the project overview (rdmorganiser#488) * Add navigation action to ProjectViewSet and refactor navigation (rdmorganiser#299, rdmorganiser#424) * Always show count in progress bar * Fix progress bar for questionsets * Fix progress computation * Fix progress permissions * Add tests for progress and navigation * Add progress to project hierarchy (rdmorganiser#488) * chore: refactor values query to managers * Use "count of total" for the progress in projects table * Add support for BASE_URL to the management react interface (rdmorganiser#815) * Rename variable * Refresh navigation after auto-save in interview * chore: add pytest-playwright dependency * chore: add custom pytest marker for e2e tests * chore: enable debug mode per env, default false * refactor: add "fixtures" fixture to reuse in e2e tests * test: add frontend-tests with pytest-playwright Co-authored-by: David Wallace Fixes: rdmorganiser#715 * ci: run e2e tests in ci * ci: add dependency groups to dependabot config * chore: update ruff repo name in pre-commit config * build: update pre-commit hooks * chore: fix ruff errors (PGH002, UP032) --------- Co-authored-by: David Wallace <[email protected]> Co-authored-by: Jochen Klar <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
a54867e
commit 7114d06
Showing
71 changed files
with
1,357 additions
and
321 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,5 +44,5 @@ module.exports = { | |
'react': { | ||
'version': 'detect' | ||
} | ||
} | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,77 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: pip | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- python | ||
- type:maintenance | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- github_actions | ||
- type:maintenance | ||
- package-ecosystem: npm | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- javascript | ||
- type:maintenance | ||
- package-ecosystem: pip | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- python | ||
- type:maintenance | ||
ignore: | ||
- dependency-name: django-mptt # pinned, 0.15 requires Python >= 3.9 | ||
groups: | ||
# create a single pull request containing all updates for the optional dependencies | ||
optional: | ||
patterns: | ||
- coveralls | ||
- django-allauth | ||
- django-auth-ldap | ||
- gunicorn | ||
- mysqlclient | ||
- pre-commit | ||
- psycopg* | ||
- pytest* | ||
# create a single pull request containing all updates for django related dependencies | ||
django: | ||
patterns: | ||
- django* | ||
- drf* | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- github_actions | ||
- type:maintenance | ||
groups: | ||
# create a single pull request containing all updates for GitHub Actions | ||
github-actions: | ||
patterns: | ||
- '*' | ||
- package-ecosystem: npm | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- javascript | ||
- type:maintenance | ||
groups: | ||
react: | ||
patterns: | ||
- react* | ||
redux: | ||
patterns: | ||
- redux* | ||
babel: | ||
patterns: | ||
- '@babel*' | ||
- babel* | ||
webpack: | ||
patterns: | ||
- webpack* | ||
eslint: | ||
patterns: | ||
- eslint* | ||
prod-dependencies: | ||
dependency-type: production | ||
dev-dependencies: | ||
dependency-type: development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.