marinac-dev / qdrant

Elixir client for Qdrant vector search engine
MIT License
20 stars 7 forks source link

Use mox only in tests #11

Open michalwarda opened 9 months ago

michalwarda commented 9 months ago

The current mix.exs contains mox without only: [:test]. This makes it so that when the library is used the app including it has to also have mox in normal runtime which I guess is not the preferred solution.

Solution: Add only: [:test] to mox in mix.exs and refresh lockfile.