Merge pull request #490 from mozilla/update_localstack

Update localstack to newest version
This commit is contained in:
Steven Englehardt 2019-09-17 10:49:49 +08:00 коммит произвёл GitHub
Родитель 07fe54d08d 744462c9fa
Коммит a2ec60bfa3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -1,2 +1,2 @@
autopep8
localstack==0.9.6
localstack[full]

Просмотреть файл

@ -9,7 +9,7 @@ IPython>=5.0; python_version >= '3.0'
mini-amf
mmh3
multiprocess
numpy>=1.14
numpy
pandas
pillow
plyvel
@ -23,7 +23,7 @@ python-dateutil
redis
s3fs
selenium
sentry-sdk==0.10.2
sentry-sdk
setuptools
six
tabulate

Просмотреть файл

@ -25,7 +25,8 @@ class TestDependencies(OpenWPMTest):
line = line.strip()
if line == "" or line[0] == "#":
continue
pkg = re.split(r'[>=<]', line)[0]
# Extract the package name by stripping requirement specifiers
pkg = re.split(r'[>=<\[]', line)[0]
print("Checking Python package", pkg)
self.assert_py_pkg_installed(pkg)