-
Notifications
You must be signed in to change notification settings - Fork 117
[feat] Relax the value syntax of env_vars
#2649
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
Conversation
Codecov ReportBase: 86.27% // Head: 86.30% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #2649 +/- ##
==========================================
+ Coverage 86.27% 86.30% +0.03%
==========================================
Files 60 60
Lines 10992 11088 +96
==========================================
+ Hits 9483 9570 +87
- Misses 1509 1518 +9
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
|
I am not sure if this is because of the PR. The unittests are failing on daint with: I will try re-running |
|
@jenkins-cscs retry daint |
Now the value of environment variables can accept any Python type. ReFrame will invoke
str(value)automatically to emit it in a script.This PR depends on #2648.
Fixes #56.