Skip to content

Commit 9f280c0

Browse files
authored
Merge pull request #183 from abelsiqueira/mp-post
Fix mp steps
2 parents 6866f00 + fb376d7 commit 9f280c0

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

.travis.yml

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
language: python
2-
python:
3-
- "3.3"
4-
- "3.4"
2+
3+
matrix:
4+
include:
5+
- python: "3.4"
6+
- python: "3.5"
7+
- python: "3.6"
8+
- python: "nightly"
9+
allow_failures:
10+
- python: "nightly"
11+
512
before_install:
613
- sudo add-apt-repository ppa:texlive-backports/ppa -y
714
- sudo apt-get update -qq
@@ -21,3 +28,8 @@ notifications:
2128
2229
2330
irc: "chat.freenode.net#perprof"
31+
webhooks:
32+
urls:
33+
- https://webhooks.gitter.im/e/bde89e38372b4ff055cc
34+
on_success: change
35+
on_failure: always

perprof/matplotlib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def plot(self):
9494

9595
# Generate the plot for each solver
9696
for idx, solver in enumerate(self.solvers):
97-
plot_.step(self.times, self.ppsbt[solver], linestyles[idx], label=solver)
97+
plot_.step(self.times, self.ppsbt[solver], linestyles[idx], label=solver, where='post')
9898

9999
# Change the xscale to log scale
100100
if self.semilog:

0 commit comments

Comments
 (0)