aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/test
diff options
context:
space:
mode:
authorRaul Farkas <raul.farkas@arm.com>2023-05-04 12:43:08 +0100
committerRickard Bolin <rickard.bolin@arm.com>2023-05-15 14:15:31 +0000
commit3e7d544134f602eb40ce2a242b6c5f0433fe3543 (patch)
tree7fed589d196b2fa09745fce95972f3c0f5f17b82 /ethosu/vela/test
parent1c54ac1499da4b1c0de39336c1a9b22e506388b1 (diff)
downloadethos-u-vela-3e7d544134f602eb40ce2a242b6c5f0433fe3543.tar.gz
MLBEDSW-7579: Fix test_build.py test issues
* Fix import order in test_build.py * Fix setup_tools_scm dependency version. Previously the version was restricted to < 6, creating a version restriction on Setuptools library too. Because an older version of Setuptools was used, running test_build.py::test_build_correct_readme_links would generate a UNKNOWN.egg-info directory in the src directory instead of a ethos_u_vela.egg-info directory. Change-Id: I113ca25b23b39d43fa288e6eda16377f4f5b4143 Signed-off-by: Raul Farkas <raul.farkas@arm.com>
Diffstat (limited to 'ethosu/vela/test')
-rw-r--r--ethosu/vela/test/test_build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethosu/vela/test/test_build.py b/ethosu/vela/test/test_build.py
index f4a1cd0c..5dd7fe1b 100644
--- a/ethosu/vela/test/test_build.py
+++ b/ethosu/vela/test/test_build.py
@@ -20,7 +20,7 @@ from pathlib import Path
from tarfile import TarFile
from tempfile import TemporaryDirectory
-import build
+import build # noreorder
import pytest