Alex Whitt
Alex Whitt
This may not be helpful to anyone else, but I'll leave a breadcrumb: I had the same issue trying to package this on NixOS. The solution was: ```nix { postFixup...
Update: A simpler solution turned out to be using the `--basedir=` flag to specify the location of the `net-snmp-config` executable. (Which for me would be `${pkgs.net_snmp}/bin`)
Pack + Capsule has worked beautifully for me out of the box. +1.
@baumandm, have you tried removing the plugin? The plugin only serves to set the options to default values. I'm pretty sure it's mutually exclusive with specifying test suites yourself.
Hmm, well I see how the documentation says you should be able to use both... let me check something.
OK yeah I'm pretty sure the plugin overrides ::clojure.spec.test.check/opts with the CLI values, even if there are no values provided. This isn't ideal, so I'm going to look into a...
Ah, alright. I'll add some tests and try to figure out a fix. I don't personally use tests.edn so I never noticed the issue.
Looks like it works if you put `:clojure.spec.test.check/opts` at the top-level, but not otherwise. PR is forthcoming.
Ah, one problem is that :checks is not auto-resolving to `:kaocha.spec.test.check/checks`. Also, opinion question: does the aforementioned config option seem awkward to you? (and @plexus?) In other words, would it...
Wouldn't it make more sense to use the existing filtering / skipping syntax at the test suite level? I'd have to implement them for function vars rather than test vars,...