summaryrefslogtreecommitdiffhomepage
path: root/test/test_static_chroot.py (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-06-12Tests: prerequisites checking reworked.Andrei Zeliankou1-8/+6
Prerequisites check moved to the module level to simplify class structure. Discovery and prerequisites checks functions moved to the separate files. Introduced "require" fixture to provide per-test requirements check.
2023-05-25Tests: removed unused variables.Andrei Zeliankou1-2/+2
2023-02-21Tests: switched to using f-strings.Andrei Zeliankou1-50/+33
Previously, it was necessary to support older versions of Python for compatibility. F-strings were released in Python 3.6. Python 3.5 was marked as unsupported by the end of 2020, so now it's possible to start using f-strings safely for better readability and performance.
2022-06-30Tests: minor improvements.Andrei Zeliankou1-95/+31
Added "go" availability check before trying to build an application. update_action() method used were possible and fixed bug with the relative path determination in test_static_chroot.py. Templates optimization and style fixes.
2022-04-11Tests: style.Andrei Zeliankou1-10/+17
2021-10-18Tests: style.Andrei Zeliankou1-5/+4
2021-10-05Tests: added tests for variables in "chroot".Andrei Zeliankou1-0/+116
2021-09-30Static: variables in the "share" option.Zhidao HONG1-8/+10
This commit supports variable in the "share" option, the finding path to file serve is the value from "share". An example: { "share": "/www/data/static$uri" }
2021-06-28Tests: renamed share to static.Andrei Zeliankou1-0/+108
Also minor style changes.