Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Run Tests (Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: true
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
Expand Down
27 changes: 0 additions & 27 deletions docs/development/architecture-decision-records/0000-why-jquery.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

32 changes: 0 additions & 32 deletions docs/development/architecture-decision-records/0004-why-mkdocs.md

This file was deleted.

This file was deleted.

This file was deleted.

31 changes: 0 additions & 31 deletions docs/development/tests.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ html[data-theme="dark"] {
}

.iuw-root {
/* base widget */
/* behaviour */
user-select: none;
/* sizing */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ document.addEventListener('dragend', function(evt) {
const root = window.draggingEditor;
if (root.classList.contains('dragging')) { return; }

root.remove('drop-zone');
root.classList.remove('drop-zone');
});

document.addEventListener('drop', function(evt) {
Expand Down
2 changes: 1 addition & 1 deletion manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys

if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "tests.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "tests.app.settings")

from django.core.management import execute_from_command_line

Expand Down
4 changes: 0 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,3 @@ nav:
- ... | flat | htmx/*.md
- Inline Admin:
- ... | flat | inline_admin/*.md
- Development:
- ... | flat | development/*.md
- Architecture Decision Records:
- ... | flat | development/architecture-decision-records/*.md
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers = [

[project.optional-dependencies]
dev = ["black", "isort", "pre-commit", "poethepoet"]
test = ["playwright==1.48.0", "tiny-match-snapshot==0.0.2"]
test = ["playwright==1.48.0"]
docs = ["mkdocs", "mkdocs-material", "mkdocs-glightbox", "mkdocs-awesome-pages-plugin"]

[project.urls]
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_in_test_empty_marker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_in_test_empty_marker_hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_in_test_hover_add_button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_in_test_hover_delete_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_in_test_hover_preview_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_in_test_with_images_data.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_wo_test_ui_empty_marker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_wo_test_ui_empty_marker_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_wo_test_ui_empty_marker_hovered.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_wr_test_ui_empty_marker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_wr_test_ui_empty_marker_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/__snapshots__/snapshot_wr_test_ui_empty_marker_hovered.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
108 changes: 0 additions & 108 deletions tests/admin.py

This file was deleted.

File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions tests/app/array_field/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from django.contrib import admin

from . import forms, models


@admin.register(models.TestWithArrayField)
class TestWithArrayFieldAdmin(admin.ModelAdmin):
form = forms.TestWithArrayFieldForm
Loading