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

fix import cycle #1046

Merged
merged 3 commits into from
Nov 15, 2018
Merged

fix import cycle #1046

merged 3 commits into from
Nov 15, 2018

Conversation

Mic92
Copy link
Member

@Mic92 Mic92 commented Nov 15, 2018

I was too confident this would have been catched by the unittests,
but as I learned most of those require configured backends.
This time I used this nixops version to deploy my server.

cc @domenkozar sorry for bothering you again.

I was too confident this would have been catched by the unittests,
but as I learned most of those are require configured backends.
This time I used this nixops version to deploy my server.
PYTHONPATH= mypy --cache-dir=/dev/null nixops
# smoke test
HOME=$TMPDIR $out/bin/nixops --version
Copy link
Member Author

Choose a reason for hiding this comment

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

Hopefully this catches more import errors then the current tests.

@Mic92
Copy link
Member Author

Mic92 commented Nov 15, 2018

I have seen this failing before:

https://travis-ci.com/NixOS/nixops/builds/91560125#L4432

in #1042 (comment)

@@ -1269,7 +1270,7 @@ def _create_state(depl, type, name, id):
def _load_modules_from(dir):
for module in os.listdir(os.path.dirname(__file__) + "/" + dir):
if module[-3:] != '.py' or module == "__init__.py": continue
__import__("nixops." + dir + "." + module[:-3], globals(), locals())
importlib.import_module("nixops." + dir + "." + module[:-3])
Copy link
Member Author

Choose a reason for hiding this comment

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

mhm, this did not solve the problem.

Copy link
Member

Choose a reason for hiding this comment

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

revert?

Copy link
Member Author

Choose a reason for hiding this comment

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

I would recommend importlib over __import__. Since the latter one does not guarantee portability across python versions:
https://docs.python.org/3/library/importlib.html#introduction

Copy link
Member Author

Choose a reason for hiding this comment

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

@Mic92
Copy link
Member Author

Mic92 commented Nov 15, 2018

Ok. Now I blame build impurities! https://travis-ci.com/NixOS/nixops/builds/91563105#L4414

@domenkozar
Copy link
Member

Should probably enable sandboxing for travis-ci.

@Mic92
Copy link
Member Author

Mic92 commented Nov 15, 2018

I will look into that.

@Mic92
Copy link
Member Author

Mic92 commented Nov 15, 2018

The question is how conservative travis is in this regard, if we ask them to switch this on by default. I guess we could have an option for that.
For now I will try to enable this just in this repository.

@domenkozar
Copy link
Member

Could expose the option to nix.useSandbox in the yaml. I think we should enable it by default and use travis-ci channels to announce that.

@Mic92 Mic92 force-pushed the fix-import-cycle branch 2 times, most recently from 721a5e7 to 7ecb5b2 Compare November 15, 2018 18:42
importlibs is wrapper around __import and harder to misuse.
@Mic92 Mic92 force-pushed the fix-import-cycle branch 2 times, most recently from 9d35184 to 4b75633 Compare November 15, 2018 19:01
@Mic92
Copy link
Member Author

Mic92 commented Nov 15, 2018

Ok. The mess is cleaned up. I have documented the sandbox feature in our wiki: https://nixos.wiki/wiki/Nix_on_Travis

@domenkozar domenkozar merged commit 8aa43c1 into NixOS:master Nov 15, 2018
@Mic92 Mic92 deleted the fix-import-cycle branch November 15, 2018 19:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants