Skip to content

Commit

Permalink
Merge pull request #183 from abelsiqueira/mp-post
Browse files Browse the repository at this point in the history
Fix mp steps
  • Loading branch information
abelsiqueira authored Jun 25, 2017
2 parents 6866f00 + fb376d7 commit 9f280c0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
language: python
python:
- "3.3"
- "3.4"

matrix:
include:
- python: "3.4"
- python: "3.5"
- python: "3.6"
- python: "nightly"
allow_failures:
- python: "nightly"

before_install:
- sudo add-apt-repository ppa:texlive-backports/ppa -y
- sudo apt-get update -qq
Expand All @@ -21,3 +28,8 @@ notifications:
- [email protected]
- [email protected]
irc: "chat.freenode.net#perprof"
webhooks:
urls:
- https://webhooks.gitter.im/e/bde89e38372b4ff055cc
on_success: change
on_failure: always
2 changes: 1 addition & 1 deletion perprof/matplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def plot(self):

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

# Change the xscale to log scale
if self.semilog:
Expand Down

0 comments on commit 9f280c0

Please sign in to comment.