dogweather
Mix test --file-watch?
I love this Haskell Stack feature:
--file-watch Watch for changes in local files and automatically
rebuild. Ignores files in VCS boring/ignore file
I do stack test --file-watch and it continuously re-tests as I work. Has anyone configured anything similar for mix test? Maybe using Guard?
Trending in Questions
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Hello !
We want new/edit form pages to POST/PUT to their own URL rather than the resources REST defaults (post /things, put /things/:id)...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #performance
- #security










First 10 of 10 Posts!
NobbZ
You can probably build something over
mix test --listen-on-stdin.idi527
There is GitHub - lpil/mix-test.watch: 🎠 Because TDD is awesome · GitHub
Also https://medium.com/@andrew_dryga/run-stale-tests-on-file-change-in-elixir-6f8aac829973
shanesveller
Here’s two language-agnostic options I have used in the past:
entr:
watchexec
Here’s an Elixir-specific snippet from my dotfiles that I’m not sure of the provenance of, and that seems kind of overwrought, but I think it might have been derived from a José/Plataformatec tweet or something?
And a variant for umbrella apps:
Edit: I wasn’t entirely mistaken, this was a José gist that maybe got tweeted about: A 1LOC bash script for re-running tests whenever a lib/ or test/ file changes keeping the same VM instance · GitHub
dogweather
Thanks!
mix-test.watchworks perfectly, including--stalesupport and clearing the screen before each test run.OvermindDL1
I use Cortex myself:
dogweather
Sweet. I’m actually back to the drawing board, because
mix-testisn’t working for me in a Docker container with a Bind mount. I may need a tool that’s configureable enough to do polling.shanesveller
This is really slick, thanks for sharing!
soup
Anyone landing here using
watchexecand experiencing it “hanging”, (you’ll see the beam process marked asTinhtop), I had to add the--wrap-process=noneflag.eg:
watchexec --wrap-process=none -c -e ex,exs -- "mix test"arcanemachine
Since we’re necro-ing this thread, here’s what I use for my mix test watcher:
mix-test-watchRequires
ag(Silver Searcher, ripgrep version added below) andentr(which is also a useful tool for file watcher scripts):Bonus: Ripgrep version (rg)
In honour of this thread, I have just upgraded it to work with
rg(ripgrep):mix-test-watchMisc. thoughts:
This script must be run from the project root directory of whatever Elixir project you want to test. It should work with any Elixir package, since it’s just a file watcher that calls
mix test.I added timestamps recently so that LLM agents could see the different timestamps as they work on their tasks (we both watch the test session via tmux).
You can append custom args when calling the file, e.g.
mix-test-watch test/some_file.ex --seed 0.Using
entris nice because you can manually trigger a run by pressing the spacebar key.There is a mix test watcher package which I will not name here, as prefer to use these common tools (
ag/rgandentr) instead of adding another Hex dependency to each project.mr_smith
Your necro is much appreciated, was looking for this exact info today.
Gravedigging is dirty work but someone’s got to do it.