Reputation: 3293
I have a django test suite that builds a DB from a 400 line fixture file. It runs unfortunately slow. Several seconds per test.
I was on the train yesterday developing without internet access, with my wifi turned off, and I noticed my tests ran literally 10x faster without internet. And they are definitely running correctly.
Everything is local, it all runs fine without an internet connection. The tests themselves do not hit any APIs or make any other connections, so it seems it must be something else.
Upvotes: 2
Views: 652
Reputation: 154634
This most likely means you've got some component installed which is trying to make network connections. Possibly something that does monitoring or statistics gathering?
The simplest way to figure out what's going on is to use tcpdump to capture your network traffic and see what's going on. To do that:
tcpdump -i any
(or tcpdump -i en1
if you're on a mac; the airport is usually en1
, but you can double check with ifconfig
)tcpdump
to see if anything obviously jumps out at youUpvotes: 2