diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-12-25 21:28:02 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-12-25 21:28:02 +0300 |
commit | 17068d2cdc1f0287f4d072e0d3a5694c8dd38e22 (patch) | |
tree | 21e9eef93338180d6b3e50d2a8a63a190c76e42f /test/test_go_application.py | |
parent | 59644130668c19522488932fbe894587e5616a94 (diff) | |
download | unit-17068d2cdc1f0287f4d072e0d3a5694c8dd38e22.tar.gz unit-17068d2cdc1f0287f4d072e0d3a5694c8dd38e22.tar.bz2 |
Tests: removed skipping Go tests on x86.
Diffstat (limited to 'test/test_go_application.py')
-rw-r--r-- | test/test_go_application.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/test_go_application.py b/test/test_go_application.py index fd80bf5b..90785851 100644 --- a/test/test_go_application.py +++ b/test/test_go_application.py @@ -4,12 +4,7 @@ import unit class TestUnitGoApplication(unit.TestUnitApplicationGo): def setUpClass(): - u = unit.TestUnit() - - if u.architecture == '32bit': - raise unittest.SkipTest('Skip Go tests for x86') - - u.check_modules('go') + unit.TestUnit().check_modules('go') def test_go_application_variables(self): self.load('variables') |