-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
pythonPackages.limnoria: Add optional dependencies and enable tests #84989
Conversation
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.
generally optional dependencies are avoided as then even packages that just need the base functionality now have to pull the entire optional dependency tree.
if you just want the tests to be ran, then only include them in checkInputs.
c0b61ce
to
0846080
Compare
Thanks for the review, and sorry for the late reply, I missed the notification somehow. This should be fixed now. |
3e93593
to
f099d94
Compare
Result of 2 packages built:
|
Result of 2 packages failed to build:
Maybe disable the tests for darwin:
|
Hmm, besides the "Operation not permitted" ones, they look like actual bugs, though. |
@SuperSandro2000 If you don't mind, could you re-run them with the |
Not necessary. |
I know, but it only explains the |
You can just mark it broken on darwin if you do not want to deal with this now. |
I marked this as stale due to inactivity. → More info |
Heh, I can't find a Darwin machine to debug, so let's mark it as broken. How do I do it? |
You probably want to set meta.broken = stdenv.isDarwin if you want to mark it broken on darwin. |
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 think you want to rebase this PR against master because the diff is looking a bit weird. stdenv is listed on line 1 and not available.
These dependencies are optional at runtime, but nice to have. They are already required to run all tests. They are all listed in the source 'requirements.txt' file.
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This is a semi-automatic executed nixpkgs-review with nixpkgs-review-checks extension. It is checked by a human on a best effort basis and does not build all packages (e.g. lumo, tensorflow or pytorch). Result of 2 packages failed to build and are new build failures:
|
--replace "version=version" 'version="${version}"' | ||
substituteInPlace plugins/Unix/test.py \ | ||
--replace "/bin/ls" "ls" \ |
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.
======================================================================
FAIL: testCall (Unix.test.UnixTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/nix/store/xwq92vhldzyh6m39jbhx7z985yhf8h03-python3.8-limnoria-2021.03.13/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
originalRunTest()
File "./plugins/Unix/test.py", line 171, in testCall
self.assertNotError('unix call /bin/ls /')
File "/nix/store/xwq92vhldzyh6m39jbhx7z985yhf8h03-python3.8-limnoria-2021.03.13/lib/python3.8/site-packages/supybot/test.py", line 358, in assertNotError
self.assertFalse(m.args[1].startswith('Error:'),
AssertionError: True is not false : 'unix call /bin/ls /' errored: Error: It seems the requested command was not available ([Errno 2] No such file or directory: '/bin/ls').
======================================================================
FAIL: testShellForbidden (Unix.test.UnixTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/nix/store/xwq92vhldzyh6m39jbhx7z985yhf8h03-python3.8-limnoria-2021.03.13/lib/python3.8/site-packages/supybot/test.py", line 214, in runTest
originalRunTest()
File "./plugins/Unix/test.py", line 176, in testShellForbidden
self.assertNotError('unix call /bin/ls /')
File "/nix/store/xwq92vhldzyh6m39jbhx7z985yhf8h03-python3.8-limnoria-2021.03.13/lib/python3.8/site-packages/supybot/test.py", line 358, in assertNotError
self.assertFalse(m.args[1].startswith('Error:'),
AssertionError: True is not false : 'unix call /bin/ls /' errored: Error: It seems the requested command was not available ([Errno 2] No such file or directory: '/bin/ls').
----------------------------------------------------------------------
Ran 1029 tests in 216.732s
FAILED (failures=2, skipped=14)
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's wrong with the substitution?
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.
The tests still error.
]; | ||
|
||
checkPhase = '' | ||
python scripts/supybot-test --no-network test --plugins-dir=./plugins/ |
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.
python scripts/supybot-test --no-network test --plugins-dir=./plugins/ | |
${python.interpreter} scripts/supybot-test --no-network test --plugins-dir=./plugins/ |
--replace "version=version" 'version="${version}"' | ||
substituteInPlace plugins/Unix/test.py \ | ||
--replace "/bin/ls" "ls" \ |
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.
The tests still error.
@ofborg build python3Packages.limnoria |
Motivation for this change
Limnoria has optional features enabled when these dependencies are available.
Things done
I copied dependencies from the source requirements.txt file.
I also enabled tests while I was at it, but I can remove them if you think it's too much overhead (5 to 10 min on an average PC)
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
./result/bin/
)nix path-info -S
before and after): 109MB -> 171MBcc @cillianderoiste