-
|
How can I run I have: (source "gnu")
(source "melpa")As part of Eask, and running I did When I remove the sources it is fast just like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Eask attempts to load the complete package metadata, including all dependencies, to avoid potential errors. Because there is no guaranteed way to determine whether a package has dependencies, Eask runs You can do something like this to get away from this: (add-hook 'eask-before-test/ert-hook
(lambda () (advice-add 'eask-pkg-init :override #'ignore)))Eask does not enforce loading package metadata in the command |
Beta Was this translation helpful? Give feedback.
Eask attempts to load the complete package metadata, including all dependencies, to avoid potential errors. Because there is no guaranteed way to determine whether a package has dependencies, Eask runs
package-initializeon every execution (eask test ert). It might be possible to infer whether initialization is necessary by inspecting the package’s dependency list.You can do something like this to get away from this:
Eask does not enforce loading package metadata in the command
eask test ert-runner, as this behavior is entirely determined by theert-runnerpackage itself. 🤔