diff options
author | Max Romanov <max.romanov@nginx.com> | 2021-05-25 18:00:59 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2021-05-25 18:00:59 +0300 |
commit | 155e22da05f01eb51b9dc082e9c8e8bff9b5ec8d (patch) | |
tree | 67006792d790c15c1d1048095fb72cba673d9820 /test/unit/applications | |
parent | 2fe76afaa69a0a992fd376c03c345f1ceb04b80e (diff) | |
download | unit-155e22da05f01eb51b9dc082e9c8e8bff9b5ec8d.tar.gz unit-155e22da05f01eb51b9dc082e9c8e8bff9b5ec8d.tar.bz2 |
Go: fixing tests for Go 1.16.
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
Diffstat (limited to 'test/unit/applications')
-rw-r--r-- | test/unit/applications/lang/go.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/unit/applications/lang/go.py b/test/unit/applications/lang/go.py index a17b1af4..6be1667b 100644 --- a/test/unit/applications/lang/go.py +++ b/test/unit/applications/lang/go.py @@ -13,6 +13,7 @@ class TestApplicationGo(TestApplicationProto): env = os.environ.copy() env['GOPATH'] = option.current_dir + '/build/go' env['GOCACHE'] = option.cache_dir + '/go' + env['GO111MODULE'] = 'auto' if static: args = [ |