Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,10 @@
# Python Support Testbed

This is a testbed application that can be used to do basic verification checks
of the support package builds used by BeeWare (Python-Apple-support and
Python-Android-support). It is not a comprehensive Python unit test suite; it
checks modules that have a history of being misconfigured or broken in builds.
This is a testbed application that can be used to do basic verification checks of the support package builds used by BeeWare (Python-Apple-support and Python-Android-support). It is not a comprehensive Python unit test suite; it checks modules that have a history of being misconfigured or broken in builds.

The app can be deployed with Briefcase. When executed, the app will generate
output on the console log that is similar to a unit test suite. If it returns 0
test failures, you can have some confidence that the support build is
functioning as expected.
The app can be deployed with Briefcase. When executed, the app will generate output on the console log that is similar to a unit test suite. If it returns 0 test failures, you can have some confidence that the support build is functioning as expected.

Before running, ensure that the template and support package paths point at the
builds you want to test. The paths committed in the repo assume that you have a
directory layout that looks something like:
Before running, ensure that the template and support package paths point at the builds you want to test. The paths committed in the repo assume that you have a directory layout that looks something like:

- (your projects folder)
- support
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ project_name = "Testbed"
bundle = "org.beeware"
version = "0.0.1"
url = "https://beeware.org"
license.file = "LICENSE"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
author = 'Russell Keith-Magee'
author_email = "russell@beeware.org"

Expand Down Expand Up @@ -59,7 +60,7 @@ requirement_installer_args = [
requires = [
# Provide a source of binary wheels that aren't provided on PyPI.
"rubicon-objc",
"std-nslog",
"std-nslog~=1.0.3",
]
# support_package = "../Python-Apple-support/dist/Python-3.14-macOS-support.custom.tar.gz"

Expand Down Expand Up @@ -118,7 +119,7 @@ requires = [
[tool.briefcase.app.testbed.iOS]
requires = [
"rubicon-objc",
"std-nslog",
"std-nslog~=1.0.3",
]
min_os_version = "17.0"
# support_package = "../Python-Apple-support/dist/Python-3.14-iOS-support.custom.tar.gz"
Expand Down
Loading