Skip to content

Commit e2f6981

Browse files
committed
Remove redundant skip check on setUp
Signed-off-by: Filipe Laíns <lains@riseup.net>
1 parent 36d08e6 commit e2f6981

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

Lib/test/test_build_details.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,6 @@ def contents(self):
110110
with open(self.location, 'r') as f:
111111
return f.read()
112112

113-
def setUp(self):
114-
if sys.platform in ('wasi', 'emscripten') and not os.path.isfile(self.location):
115-
self.skipTest(f'{sys.platform} build without a build-details.json file')
116-
117113
@needs_installed_python
118114
def test_location(self):
119115
self.assertTrue(os.path.isfile(self.location))

0 commit comments

Comments
 (0)