Add Chromium-only Blender WebEngine parity work
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# SPDX-FileCopyrightText: 2023 Blender Authors
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
import _sha1
|
||||
import _sha2
|
||||
import _md5
|
||||
import ssl
|
||||
import multiprocessing.synchronize
|
||||
@@ -0,0 +1,10 @@
|
||||
# SPDX-FileCopyrightText: 2023 Blender Authors
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
# This code tests bug reported in #50703
|
||||
|
||||
import numpy
|
||||
|
||||
a = numpy.array([[3, 2, 0], [3, 1, 0]], dtype=numpy.int32)
|
||||
a[0]
|
||||
@@ -0,0 +1,5 @@
|
||||
# SPDX-FileCopyrightText: 2023 Blender Authors
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
import numpy
|
||||
@@ -0,0 +1,16 @@
|
||||
# SPDX-FileCopyrightText: 2023 Blender Authors
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
import requests
|
||||
|
||||
# Test this specific endpoint because this will check for a connection to the
|
||||
# buildbot master. We should be quite sure that this endpoint is up if the
|
||||
# builder is running the release check scripts.
|
||||
website = "https://builder.blender.org/admin/"
|
||||
|
||||
r = requests.get(website, verify=True, timeout=30)
|
||||
|
||||
assert r.status_code == 200, f"{website} returned a status code {r.status_code}, we expected 200"
|
||||
assert r.reason == "OK", f"Didn't get 'OK' response from {website}, got {r.reason}"
|
||||
assert len(r.content) > 256, "The content we got from the web request is too small to be valid"
|
||||
@@ -0,0 +1,5 @@
|
||||
# SPDX-FileCopyrightText: 2023 Blender Authors
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
import requests
|
||||
Reference in New Issue
Block a user