remove numpy from test, and fix compiling single binary mscp

This commit is contained in:
Ryo Nakamura
2023-03-10 22:06:46 +09:00
parent 2477647a3b
commit d22c02b793
8 changed files with 25 additions and 33 deletions

View File

@@ -1,6 +1,5 @@
import pytest
import numpy
import hashlib
import os

View File

@@ -1,6 +1,5 @@
import hashlib
import numpy
import os
@@ -39,7 +38,7 @@ class File():
def make_content_random(self):
with open(self.path, "wb") as f:
f.write(numpy.random.bytes(self.size))
f.write(os.urandom(self.size))
def cleanup(self):
os.remove(self.path)