dogweather

dogweather

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?

Showing Posts 1 to 10

NobbZ

NobbZ

You can probably build something over mix test --listen-on-stdin.

–listen-on-stdin - runs tests, and then listens on stdin. Receiving a newline will result in the tests being run again. Very useful when combined with --stale and external commands which produce output on stdout upon file system modification.

shanesveller

shanesveller

Here’s two language-agnostic options I have used in the past:

entr:

git ls-files **/*.ex* | entr -cdp mix test [--stale]

watchexec

watchexec -c -p -e 'ex,exs,lock' -- mix test [--stale]

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?

fswatch --latency=0.01 --one-per-batch lib/ test/ | MIX_ENV=test mix do test --stale, run --no-halt -e "IO.gets(:stdio, ''); IO.puts 'Restarting...'; :init.restart()"

And a variant for umbrella apps:

fswatch --latency=0.01 --one-per-batch apps/ config/ mix.exs mix.lock | MIX_ENV=test mix do test --stale, run --no-halt -e "IO.gets(:stdio, ''); IO.puts 'Restarting...'; :init.restart()"

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

dogweather OP

Thanks! mix-test.watch works perfectly, including --stale support and clearing the screen before each test run.

OvermindDL1

OvermindDL1

I use Cortex myself:

11
Post #5
dogweather

dogweather OP

Sweet. I’m actually back to the drawing board, because mix-test isn’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

shanesveller

This is really slick, thanks for sharing!

soup

soup

Anyone landing here using watchexec and experiencing it “hanging”, (you’ll see the beam process marked as T in htop), I had to add the --wrap-process=none flag.

eg:

watchexec --wrap-process=none -c -e ex,exs -- "mix test"

arcanemachine

arcanemachine

Since we’re necro-ing this thread, here’s what I use for my mix test watcher:

mix-test-watch

#!/bin/sh

until ag -g "\.(ex|exs|eex|heex)$" | entr -d sh -c 'mix test "$@"; echo ""; echo "Test run finished on: $(date -Iseconds)"' _ "$@"; do sleep 1; done

Requires ag (Silver Searcher, ripgrep version added below) and entr (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-watch

#!/bin/sh

until rg --files -g "*.{ex,exs,eex,heex}" | entr -d sh -c 'mix test "$@"; echo ""; echo "Test run finished on: $(date -Iseconds)"' _ "$@"; do sleep 1; done

Misc. 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 entr is 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/rg and entr) instead of adding another Hex dependency to each project.

mr_smith

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.

— All posts loaded —

Where Next? Top

Trending in Questions Top

Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Trolleger
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
matt-savvy
Anyone here using Honeybadger? My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of Bandit.HTTPError...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New

Other Trending Topics Top

garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New
webofbits
Aludel - LLM Evaluation Workbench Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews