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!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
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
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
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
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
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
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
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
- #blog-post
- #phoenix_html
- #iex
- #ai
- #graphql
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 4- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (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.