Skip to content

Commit 56b296f

Browse files
committed
🚒 Fixed pypy support and fixed typo in conftest
1 parent 4a4b6c8 commit 56b296f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ python:
55
- "3.5-dev" # 3.5 development branch
66
- "3.6-dev" # 3.6 development branch
77
- "nightly" # 3.7 development branch
8-
- "pypy" # 3.7 development branch
8+
- "pypy3" # pypy3
99
os:
1010
- "linux"
1111
- "osx"
1212
matrix:
1313
allow_failures:
1414
- python: "nightly"
15-
- python: "pypy"
15+
- python: "pypy3"
1616
- os: "osx"
1717
addons:
1818
apt:

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
token_name = 'PRIVATE_KEY_{}'.format(service.upper())
2020
namespace_name = '{}_NAMESPACE'.format(service.upper())
2121
if token_name not in os.environ:
22-
os.environ[token_name] = '_namespace_{}_:_private_'.format(s) # using a : for bitbucket's case
22+
os.environ[token_name] = '_namespace_{}_:_private_'.format(service) # using a : for bitbucket's case
2323
if namespace_name not in os.environ:
24-
os.environ[namespace_name] = '_namespace_{}_'.format(s)
24+
os.environ[namespace_name] = '_namespace_{}_'.format(service)
2525
else:
2626
# if running tests "locally" and not in travis, let's try to extract the keys from
2727
# the local configuration if there is some local configuration. And exposes them as

0 commit comments

Comments
 (0)