Skip to content

Commit

Permalink
ci: Travis: upgrade PyPy (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed May 25, 2019
1 parent 27c4b05 commit 1539867
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ stages:

jobs:
include:
- python: 'pypy2.7-6.0'
- python: 'pypy'
env: TOXENV=pypy-coverage
- python: 'pypy3.5-6.0'
- python: 'pypy3'
env: TOXENV=pypy3-coverage
- python: '3.7'
env: TOXENV=py37-coverage
Expand Down
9 changes: 5 additions & 4 deletions testing/test_pdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2476,10 +2476,11 @@ def test_pdbrc_continue(tmpdir):
pytest.skip("Only with readrc support with pdb.Pdb")

with tmpdir.as_cwd():
open(".pdbrc", "w").writelines([
"p 'from_pdbrc'\n",
"continue\n",
])
with open(".pdbrc", "w") as f:
f.writelines([
"p 'from_pdbrc'\n",
"continue\n",
])

def fn():
set_trace(readrc=True)
Expand Down

0 comments on commit 1539867

Please sign in to comment.