From 88923c7bf703121c425ce88ecb2d8ee27b6a5b48 Mon Sep 17 00:00:00 2001
From: Andrew Ferrier <andrewferrier@example.com>
Date: Mon, 2 Nov 2015 22:10:15 +0000
Subject: [PATCH] Add initial performance profiling support.

---
 .gitignore                | 2 ++
 Makefile                  | 6 ++++++
 performance/printstats.py | 4 ++++
 3 files changed, 12 insertions(+)
 create mode 100644 performance/printstats.py

diff --git a/.gitignore b/.gitignore
index 1cc3b04..5ce806c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -55,3 +55,5 @@ docs/_build/
 
 # PyBuilder
 target/
+
+.email2pdf.profile
diff --git a/Makefile b/Makefile
index b916e72..ab16eac 100644
--- a/Makefile
+++ b/Makefile
@@ -59,4 +59,10 @@ coverage:
 	nosetests tests/Direct/*.py --with-coverage --cover-package=email2pdf,tests --cover-erase --cover-html --cover-branches
 	open cover/index.html
 
+.email2pdf.profile: email2pdf
+	python3 -m cProfile -o .email2pdf.profile `which nosetests` .
+
+profile: .email2pdf.profile
+	python3 performance/printstats.py | less
+
 alltests: unittest analysis coverage
diff --git a/performance/printstats.py b/performance/printstats.py
new file mode 100644
index 0000000..7e36347
--- /dev/null
+++ b/performance/printstats.py
@@ -0,0 +1,4 @@
+import pstats
+
+p = pstats.Stats('.email2pdf.profile')
+p.strip_dirs().sort_stats('time').print_callers(30)