Skip to content
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

Use Config class to write config during init_project. #252

Merged
merged 4 commits into from
Dec 6, 2019

Conversation

bdice
Copy link
Member

@bdice bdice commented Dec 3, 2019

Description

This uses the Config class (not to be confused with the new immutable _ProjectConfig class or the ConfigObj class from which it inherits) to initialize projects.

Potential breaking behavior: The signac.rc files generated after this change will differ from the previous configuration files by whitespace (spaces around the equals signs). The configs are parsed the same as before.

Motivation and Context

The previous code didn't work if the project name contained commas. Resolves #251.

Types of Changes

  • Documentation update
  • Bug fix
  • New feature
  • Breaking change1
    1The change breaks (or has the potential to break) existing functionality.

Checklist:

If necessary:

  • I have updated the API documentation as part of the package doc-strings.
  • I have created a separate pull request to update the framework documentation on signac-docs and linked it here.
  • I have updated the changelog.

@bdice bdice requested a review from a team as a code owner December 3, 2019 23:21
@ghost ghost requested review from vyasr and removed request for a team December 3, 2019 23:21
@bdice bdice self-assigned this Dec 3, 2019
@bdice bdice added the bug Something isn't working label Dec 3, 2019
@codecov
Copy link

codecov bot commented Dec 3, 2019

Codecov Report

Merging #252 into master will increase coverage by 0.09%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #252      +/-   ##
==========================================
+ Coverage   64.96%   65.06%   +0.09%     
==========================================
  Files          39       39              
  Lines        5580     5581       +1     
==========================================
+ Hits         3625     3631       +6     
+ Misses       1955     1950       -5
Impacted Files Coverage Δ
signac/contrib/project.py 90.97% <100%> (+0.01%) ⬆️
signac/common/config.py 70.37% <0%> (+4.62%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 51381ab...aea2caa. Read the comment docs.

Copy link
Contributor

@vyasr vyasr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm willing to accept the possibility that people who are manually reading the signac.rc file and parsing it might have to deal with slightly different whitespace. I don't think that's a meaningful change as long as all of our existing functions (both Python and CLI) will work. As long as existing configs get parsed correctly either way (and therefore users can still manually create signac.rc files using a text editor), I don't think it's a problem.

@bdice bdice added this to the v1.3.0 milestone Dec 4, 2019
@csadorf csadorf merged commit 47aa6a3 into master Dec 6, 2019
@csadorf csadorf deleted the fix/config-init branch December 6, 2019 14:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Commas in project names cause unexpected errors
3 participants