Attachment addition on test case level in a test run#4293
Open
veenone wants to merge 14 commits intokiwitcms:masterfrom
Open
Attachment addition on test case level in a test run#4293veenone wants to merge 14 commits intokiwitcms:masterfrom
veenone wants to merge 14 commits intokiwitcms:masterfrom
Conversation
…est execution rows - Show paperclip icon with counts (E:N / TC:M) on collapsed test execution rows when attachments exist - Convert execution and test case attachment sections from list to table layout with File, Owner, and Date columns
See notice at: https://setuptools.pypa.io/en/latest/history.html#v82-0-0 Most common uses of pkg_resources have been superseded by the importlib.resources and importlib.metadata projects. What we were seeing on our side before this depractation was: ``` UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. ``` We would fix this properly but for now pin the version b/c 82.0.0 is already causing existing CI jobs to fail for us.
Bumps [markdown](https://github.com/Python-Markdown/markdown) from 3.10.1 to 3.10.2. - [Release notes](https://github.com/Python-Markdown/markdown/releases) - [Changelog](https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md) - [Commits](Python-Markdown/markdown@3.10.1...3.10.2) --- updated-dependencies: - dependency-name: markdown dependency-version: 3.10.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [mysqlclient](https://github.com/PyMySQL/mysqlclient) from 2.2.7 to 2.2.8. - [Release notes](https://github.com/PyMySQL/mysqlclient/releases) - [Changelog](https://github.com/PyMySQL/mysqlclient/blob/main/HISTORY.rst) - [Commits](PyMySQL/mysqlclient@v2.2.7...v2.2.8) --- updated-dependencies: - dependency-name: mysqlclient dependency-version: 2.2.8 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [locust](https://github.com/locustio/locust) from 2.43.2 to 2.43.3. - [Release notes](https://github.com/locustio/locust/releases) - [Changelog](https://github.com/locustio/locust/blob/master/CHANGELOG.md) - [Commits](locustio/locust@2.43.2...2.43.3) --- updated-dependencies: - dependency-name: locust dependency-version: 2.43.3 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [django-tree-queries](https://github.com/matthiask/django-tree-queries) from 0.23.0 to 0.23.1. - [Changelog](https://github.com/feincms/django-tree-queries/blob/main/CHANGELOG.rst) - [Commits](feincms/django-tree-queries@0.23...0.23.1) --- updated-dependencies: - dependency-name: django-tree-queries dependency-version: 0.23.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [webpack](https://github.com/webpack/webpack) from 5.105.0 to 5.105.2. - [Release notes](https://github.com/webpack/webpack/releases) - [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md) - [Commits](webpack/webpack@v5.105.0...v5.105.2) --- updated-dependencies: - dependency-name: webpack dependency-version: 5.105.2 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
since they report too many issues and we don't really have the capacity to act on them.
will upgrade when 26.04 becomes available!
Bumps [pdfmake](https://github.com/bpampuch/pdfmake) from 0.3.3 to 0.3.4. - [Release notes](https://github.com/bpampuch/pdfmake/releases) - [Changelog](https://github.com/bpampuch/pdfmake/blob/master/CHANGELOG.md) - [Commits](bpampuch/pdfmake@0.3.3...0.3.4) --- updated-dependencies: - dependency-name: pdfmake dependency-version: 0.3.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
* New translations django.po (French) * New translations django.po (Spanish, Venezuela)
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
in current implementation, we can have attachment globally for the test run scope.
however there are some cases we need to provide attachment for each test cases that run within the test run.
this PR extends this implementation a little bit by providing attachment for test case level in a testrun
Screenshot