Skip to content
This repository was archived by the owner on Jun 12, 2021. It is now read-only.

Commit 4753f3e

Browse files
committed
Need pytest-localserver not any other pytest httpserver.
1 parent 6242342 commit 4753f3e

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,17 @@ def run_tests(self):
6161
classifiers=[
6262
"Development Status :: 4 - Beta",
6363
"License :: OSI Approved :: Apache Software License",
64-
"Programming Language :: Python :: 3.4",
6564
"Programming Language :: Python :: 3.5",
6665
"Programming Language :: Python :: 3.6",
6766
"Topic :: Software Development :: Libraries :: Python Modules"],
6867
install_requires=[
69-
"cryptojwt>=0.4.4",
68+
"cryptojwt>=0.6.6",
7069
'oidcmsg>=0.6.2',
7170
],
7271
tests_require=[
7372
"responses",
7473
"testfixtures",
74+
"pytest-localserver"
7575
],
7676
zip_safe=False,
7777
cmdclass={'test': PyTest},

tests/test_01_service_context.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import os
2-
import pytest
3-
42
from urllib.parse import urlsplit
53

4+
import pytest
65
from cryptojwt.key_jar import build_keyjar
76

8-
from oidcservice import DEF_SIGN_ALG
97
from oidcservice.service_context import ServiceContext
108

119

0 commit comments

Comments
 (0)