summaryrefslogtreecommitdiffhomepage
path: root/test/unit/check/go.py (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-06-14Tests: get rid of classes in test files.Andrei Zeliankou1-2/+2
Class usage came from the unittest framework and it was always redundant after migration to the pytest. This commit removes classes from files containing tests to make them more readable and understandable.
2023-06-12Tests: prerequisites checking reworked.Andrei Zeliankou1-2/+1
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.
2022-12-12Tests: pretty output.Andrei Zeliankou1-3/+1
Hide expected alerts by default. Silence succesfull "go build" information.
2022-01-10Tests: using modules in Go.Max Romanov1-31/+5
2021-11-15Tests: refactored working with processes.Andrei Zeliankou1-3/+4
2021-05-25Go: fixing tests for Go 1.16.Max Romanov1-0/+1
In Go 1.16, the module-aware mode is enabled by default; to fall back to previous behavior, the GO111MODULE environment variable should be set to 'auto'. Details: https://golang.org/doc/go1.16
2020-11-16Tests: fixing tests interrupt in terminal.Max Romanov1-0/+3
KeyboardInterrupt re-raised.
2020-10-01Tests: minor fixes.Andrei Zeliankou1-0/+29
Fixed temporary dir removing. Fixed printing path to log. Module checks moved to the separate file.