While testing glow after the installation, I came across a few minor issues relating to the test suite, the documentation and the configuration. I have grouped these together for convenience:
1. Incorrect Import in Test Suite
In the file tests/unittest/test_export_data.py, there is an incorrect import at line 10.
- Expected:
from glow.generator.geom_extractor import classify_layout_edges
Additionally, the references at lines 732 and 751 in the same file should be updated to use classify_layout_edges.
2. Error in Documentation Paths
The directory path is misspelled in the documentation instructions for running tests. It is currently written as test/... but should be corrected to tests/... to match the actual folder structure.
3. Outdated Version in Config
When running the tests, the config file indicates version 1.0.0, but it should be updated to version 1.1.0.
While testing glow after the installation, I came across a few minor issues relating to the test suite, the documentation and the configuration. I have grouped these together for convenience:
1. Incorrect Import in Test Suite
In the file
tests/unittest/test_export_data.py, there is an incorrect import at line 10.from glow.generator.geom_extractor import classify_layout_edgesAdditionally, the references at lines 732 and 751 in the same file should be updated to use
classify_layout_edges.2. Error in Documentation Paths
The directory path is misspelled in the documentation instructions for running tests. It is currently written as
test/...but should be corrected totests/...to match the actual folder structure.3. Outdated Version in Config
When running the tests, the
configfile indicates version1.0.0, but it should be updated to version1.1.0.