Installation
Installing the pytest-f3ts
Python Module
The pytest-f3ts
distributions are stored within a Google Cloud Artifact Registry. This is a private repository that
your subscription to the FixturFab Functional Test System grants you access to.
We recommend and have detailed instructions for using Poetry to install the pytest-f3ts
module. This can also be installed using pip, however, you will need to refer to the
Google Cloud Artifacts documentation.
Requirements
Instructions for Installing pytest-f3ts
using Poetry
- Install
gcloud
CLI Application - Install
poetry
- Add the Google Artifact Registry as a
poetry
pluginpoetry self add keyrings.google-artifactregistry-auth
- Authenticate with the Google Artifact Registry
gcloud auth login
- Verify that you are connected to the
[test-runner-404519]
project. - Add the Google Artifact Registry as a
poetry
repository. Copy and paste the following into yourpyproject.toml
file:[[tool.poetry.source]] name = "pytest-f3ts" url = "https://us-west1-python.pkg.dev/test-runner-404519/pytest-f3ts/simple/" secondary = true
- Install the package
poetry add pytest-f3ts
Note: If you're having issues installing the package, you can double check the URL by running the following command:
gcloud artifacts print-settings python \
--project=test-runner-404519 \
--repository=pytest-f3ts \
--location=us-west1
Resources: