CinderellaMan
Hello,
I’m working on my project: GitHub - Cinderella-Man/igthorn: Cryptocurrency trading platform · GitHub
This was going well up to some moments but as I started to add more tests it started to error:
1) test Naive trader retarget test (Hefty.Algos.NaiveTest)
test/algos/naive_test.exs:271
** (exit) exited in: DBConnection.Holder.checkout(#PID<0.390.0>, [log: #Function<11.70725129/1 in Ecto.Adapters.SQL.with_log/3>, pool_size: 10, timeout: 60000, pool: DBConnection.ConnectionPool])
** (EXIT) shutdown
code: stream_events(symbol, settings, events)
stacktrace:
(db_connection) lib/db_connection/holder.ex:71: DBConnection.Holder.checkout/2
(db_connection) lib/db_connection.ex:1030: DBConnection.checkout/3
(db_connection) lib/db_connection.ex:1340: DBConnection.run/6
(db_connection) lib/db_connection.ex:540: DBConnection.parsed_prepare_execute/5
(db_connection) lib/db_connection.ex:533: DBConnection.prepare_execute/4
(postgrex) lib/postgrex.ex:217: Postgrex.query_prepare_execute/4
(ecto_sql) lib/ecto/adapters/sql.ex:292: Ecto.Adapters.SQL.query!/4
test/algos/naive_test.exs:450: Hefty.Algos.NaiveTest.setup_trading_environment/2
test/algos/naive_test.exs:485: Hefty.Algos.NaiveTest.stream_events/3
test/algos/naive_test.exs:301: (test)
It’s interesting that tests are running fine currently on that branch, but there’s a single test that I disabled that does exactly the same things as other tests. The moment I will remove @skip(it’s here: https://github.com/HedonSoftware/Igthorn/blob/0.0.3/apps/hefty/test/algos/naive_test.exs#L271) tag above errors shows up and it’s driving me crazy. Any idea?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
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
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
CinderellaMan
I the meantime I added other test and it fails from the same issue.
Interesting fact - after disabling other test - this new one works which would indicate that too long tests are connected to the issue.
dimitarvp
Take a look at Ecto.Adapters.SQL.Sandbox docs.
CinderellaMan
Thanks for your reply.
I read through the docs but I don’t see a big point (well beside speed) to use it - there’s a lot of things that deal with database in my codebase - a lot of processes have state, that queries db etc.
My point is quite opposite - can I run all the tests permanently sequential even between files?
I’m running with
--tracebut this one makes tests sequential inside a single file.I don’t fully understand why database connection would die suddenly even when I’m testing a single file:
On the branch some of tests are disabled and works fine (with currently enabled ones). The rest of the tests should be enabled but the moment that I will enable one for example comment out this line https://github.com/HedonSoftware/Igthorn/blob/0.0.3/apps/hefty/test/algos/naive_test.exs#L337 - it’s falling apart..
dimitarvp
The docs I linked pertain to DB connection ownership during testing, sorry if I misunderstood your intent.
As for sequential tests, I am not sure if async: false would be enough for your needs.