baupaola
Hi, I need profile a slow my function test in suite test.
I used the suggestion of Bryan Stearns (https://selfamusementpark.com/profiling-a-slow-elixir-test)
but it does not work if I have variable or function outside the scope.
My hex version is
System.version
"1.6.4"
I tried iex -S mix profile.fprof --no-compile -e “Mix.Tasks.Test.run([])”, it work but the out is for all my test.
I need profile a single test , i tried iex -S mix profile.fprof --no-compile -e “Mix.Tasks.Test.run([only: "test/test_only_profile_trest.exs"])”
but the output is:
Erlang/OTP 20 [erts-9.3.1] [source] [64-bit] [smp:4:4] [ds:4:4:10] [async-threads:10] [hipe] [kernel-poll:false]
07:53:28.841 application=router module=Router function=start_link/1 [info] started ... with opts [name: RouterGenServer]
07:53:28.841 application=router module=Router function=init/1 [debug] init Elixir.Router with args -->[]
Warmup...
warning: variable "x" is unused
test/support/helper.exs:37
warning: variable "tdiff" is unused
test/support/helper.exs:46
** (FunctionClauseError) no function clause matching in String.split/3
The following arguments were given to **String.split/3:**
# 1
{:only, "test/test_only_profile_trest.exs"}
# 2
":"
# 3
[]
Attempted function clauses (showing 4 out of 4):
def split(string, %Regex{} = pattern, options) when is_binary(string)
def split(string, "", options) when is_binary(string)
def split(string, pattern, []) when is_tuple(pattern) or is_binary(string)
def split(string, pattern, options) when is_binary(string)
(elixir) lib/string.ex:383: String.split/3
(ex_unit) lib/ex_unit/filters.ex:17: ExUnit.Filters.parse_path/1
(mix) lib/mix/tasks/test.ex:338: Mix.Tasks.Test.parse_files/2
(mix) lib/mix/tasks/test.ex:260: Mix.Tasks.Test.run/1
(mix) lib/mix/tasks/profile.fprof.ex:167: Mix.Tasks.Profile.Fprof.profile_and_analyse/2
(mix) lib/mix/tasks/profile.fprof.ex:160: Mix.Tasks.Profile.Fprof.profile/2
My mistake where is?
The key “only” is true for task test.
Thanks in advance.
Paola.
Trending in Questions
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
So i have been using ash framework for a while and i love it. However currently the issue im having with ash framework is the error handl...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
You need to specify the list of arguments as if you were giving it at the command line:
Mix.Tasks.Test.run(["--only", "test/test_only_profile_trest.exs"])Aside of that,
--onlyfilters based on@tags, you probably want to pass only the file to run tests from:Mix.Tasks.Test.run(["test/test_only_profile_trest.exs"])Finally, I do think you have a typo in the filename
baupaola
Thanks Nobbz,
but not work
iex -S mix profile.fprof --no-compile -e “Mix.Tasks.Test.run([“test/router_only_profile_test.exs”])”
test 2:
iex -S mix profile.fprof --no-compile -e “Mix.Tasks.Test.run([“only”, “test/router_only_profile_test.exs”])”
I removed my typing error
.
Paola.
NobbZ
I’m not sure how exactly you write the command into the terminal.
Therefore please try these exact commands (copy and paste) and then show us the full transcript when they fail and properly wrap everything into a codeblock, not only the output, but also the command.
baupaola
Thank you very much for your help, the error was double quotes after -e.
Now work.
Thank.
Paola.