-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unit test friendly folder structure for Python examples (#237)
- Loading branch information
Showing
3 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# -*- coding: utf-8 -*- | ||
import generate_parameter_module_example | ||
|
||
print(f'Imported module from: {generate_parameter_module_example.__file__}') | ||
|
||
import generate_parameter_module_example.admittance_parameters # noqa: E402 | ||
|
||
print('Imported generated parameter module') | ||
|
||
import generate_parameter_module_example.minimal_publisher # noqa: E402 | ||
|
||
print('Imported minimal publisher module') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters