-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
exclude mos from file #160
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
51b49f9
new function setExcludeMosFromFile
thorade 07a2e36
modernize function _includeFile
thorade cacd51a
when modifying the sequence you are iterating over, make a temporary …
thorade 3060af9
modernize checkKey
thorade 9441b9a
just to make playing around with new function a bit easier
thorade 4810b04
Merge branch 'master' into issue143_setExcludeMosFromFile
mwetter a5c06c7
Update regressiontest.py
thorade 4c6cd15
test for isfile instead not None,
thorade 7fa581f
new test for setExcludeMosFromfile,
thorade e7119e1
build up path as done in other examples
thorade f2636b4
line break
thorade 89f2c97
correct path
thorade 7b840f9
exclude all but one
thorade c16c7bb
need to execute .run to remove from data
thorade b3a5b15
write error if file not found
thorade 0f79f36
Renamed function for #143
mwetter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
7 changes: 7 additions & 0 deletions
7
buildingspy/tests/MyModelicaLibrary/Resources/Scripts/skipUnitTestList.txt
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,7 @@ | ||
# skip some mos tests | ||
MyModelicaLibrary\Resources\Scripts\Dymola\Examples\BooleanParameters.mos | ||
# MyModelicaLibrary\Resources\Scripts\Dymola\Examples\Constants.mos | ||
MyModelicaLibrary\Resources\Scripts\Dymola\Examples\MyStep.mos | ||
MyModelicaLibrary\Resources\Scripts\Dymola\Examples\FMUs\Gain.mos | ||
MyModelicaLibrary\Resources\Scripts\Dymola\Examples\FMUs\Integrator_Underscore.mos | ||
MyModelicaLibrary\Resources\Scripts\Dymola\Examples\FMUs\IntegratorGain.mos |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this file doing? I don't see it anywhere else used in the code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I used it locally to test whether the new function works, will write a proper test instead and use it there.