From dedc45758a96c06a43cf47444824b4f2eb46b19c Mon Sep 17 00:00:00 2001
From: Takafumi Arakaki <aka.tkf@gmail.com>
Date: Sat, 13 Oct 2018 00:02:31 -0700
Subject: [PATCH] display(Pkg.installed()) in test/runtests.jl

---
 test/runtests.jl | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/test/runtests.jl b/test/runtests.jl
index a1951214..281f3e7d 100644
--- a/test/runtests.jl
+++ b/test/runtests.jl
@@ -1,6 +1,10 @@
 using PyCall, Compat
 using Compat.Test, Compat.Dates, Compat.Serialization
 
+using Compat: Pkg
+display(Pkg.installed())
+println()
+
 filter(f, itr) = collect(Iterators.filter(f, itr))
 filter(f, d::AbstractDict) = Base.filter(f, d)