Automatically skip tests that don't need to run
Project description
YourBase Python Test Acceleration
Tests are important. For large monoliths, they're also a major source of drag on velocity.
YourBase is a tool that traces your tests to determine which functions each test depends on in order to create a dependency graph. It can later use the dependency graph to determine which tests don't need to run because their code paths have not changed. These tests are skipped automatically.
No configuration, setup, or babysitting required. To install:
pip install yourbase
YourBase works with Python 2.7+ and Python 3.5+; using pytest
or
unittest
.
See docs.yourbase.io for more information.
Access
By using YourBase, you agree to our terms of service.
YourBase test acceleration works on your laptop, YourBase test acceleration works in your CI! Your data never leaves your control—cache data locally or specify an S3 bucket to synchronize dependency graphs among any number of credentialed machines.
YourBase will work for free for 30 days. Please consider purchasing a license if you like it—those who do generally get more back than they spend.
First run
unittest
Only
Place
import unittest
import yourbase
yourbase.attach(unittest)
in a file that runs before your tests (e.g. tests/__init__.py
). Do not do this
step if you are using pytest
.
All installations
Run your tests with the same command you typically use. You should see some output from YourBase similar to
[YB] Starting Python acceleration
The first run will be cold. During a cold run, YourBase will build a dependency graph based on the tests that are executed. The graph contains relationships between individual tests and the functions they call. If you just want to see YourBase in action and your tests are going to take a while, you can run a subset of tests. The dependency graph for the subset will be used correctly even if you later run all tests.
After the run finishes, running again will skip all tests. Modifying a dependency will run only tests whose code paths touched the changed code. You're YourBased! 🚀
Forcing specific tests to run
You can tell YourBase to never skip specific tests with decorators:
# pytest
import pytest
@pytest.mark.do_not_accelerate
def test_function():
# ...
# unittest
import yourbase.plugins.unittest as yourbase
@yourbase.do_not_accelerate
class TestClass(unittest.TestCase):
def test_function():
# ...
The test or group will never be skipped due to unchanged dependencies. If you are using test cohorting (below), it may still be skipped if it is not assigned to the running shard.
We do not yet support this feature for unittest
.
How do I know YourBase won't incorrectly skip important tests?
YourBase test selection includes an "observation mode" which allows you to test drive test selection without actually skipping any tests. "Observation mode" provides feedback to help you establish trust between your test suite and the test selection plugin.
In “observation mode” all [command-line specified] examples will be run, but YourBase will monitor if the test selection would have skipped any tests that ultimately failed. At the end, it will print out the names of any tests that would have been incorrectly skipped.
To enable observation mode, set YOURBASE_OBSERVATION_MODE=true
in the environment, and run your tests.
# Pytest example
$ YOURBASE_OBSERVATION_MODE=true pytest tests/
Synchronizing dependency graphs
By default, YourBase's dependency graph is stored locally on the machine where it was created, and it will not leave the machine without further configuration. While local test acceleration is great for your individual needs, the true power comes in sharing graphs with individuals, teams, and CI environments.
The dependency graph data includes:
- test names
- file names
- class and function names
- relationships between of the above
- a small amount of metadata like commit hash, build time, and Python version
To share dependency graphs, YourBase utilizes an S3 bucket as a collaboration point.
AWS S3 bucket configuration
All machines should set
YOURBASE_REMOTE_CACHE=s3://<bucketname>[/key/prefix]
where <bucketname>
is an S3 bucket that each machine has Get
/Put
/List
access to. Dependency graphs generated for passing builds from clean working trees
will be synchronized to this location, then used for future runs if a local
cache is not present. (Dependency graphs run against code with uncommitted changes
will be stored only locally.)
It is safe to share one bucket between multiple repositories, even if across multiple languages. (Ruby test acceleration coming soon!)
YourBase uses the system AWS credentials by default. This can be configured via environment variables or AWS CLI configuration files.
# To use system AWS credentials via environment variables, ensure your
# credentials are exported in your environment.
export AWS_ACCESS_KEY_ID=changeme
export AWS_SECRET_ACCESS_KEY=changeme
If you want YourBase to use different credentials (or if you're setting the system AWS credentials to bogus values for your tests or CI), you can set these YourBase-specific environment variables instead:
# To set YourBase specific AWS credentials, export the following:
export YOURBASE_AWS_ACCESS_KEY_ID=changeme
export YOURBASE_AWS_SECRET_ACCESS_KEY=changeme
If these are set, we'll use them instead of the system credentials.
Your code will never be uploaded to the bucket. Only the dependency graphs are uploaded to the bucket. Neither your code nor your dependency graphs will touch YourBase servers.
Test parallelization
YourBase has first-party support for acceleration-friendly parallelization:
- Set
YOURBASE_COHORT_COUNT
to the number of shards - Set
YOURBASE_ACTIVE_COHORT
to the shard ID (in the range[1, YOURBASE_COHORT_COUNT]
)
YourBase uses consistent hashing to split your tests across shards so they do not get "reshuffled" when other tests are added or removed. This will give parallelized tests the full benefits of acceleration.
CircleCI users do not have to set the above environment variables as YourBase will inherit them automatically. However you must remove any CircleCI test splitting or globbing, as YourBase will automatically choose which tests to run "just in time".
Compatibility
Poetry
YourBase is compatible with the packaging and dependency management tool Poetry. Once the YourBase package is installed, simply use Poetry as normally.
For example:
# Install the YourBase package
poetry add yourbase
# Execute tests
poetry run pytest
Known issues
Incorrectly skipped tests
If you are using unittest
and define your own setUp
/tearDown
functions, be
sure they call super
before performing other actions:
class MyTestClass:
def setUp(self):
super(self.__class__, self).setUp()
# ...
def tearDown(self):
super(self.__class__, self).tearDown()
# ...
If you are not defining your own setUp
and tearDown
functions, you do not
need to do this.
Errors
If you run into errors about the _sqlite3
module not being found, first run
# Debian-based
sudo apt-get install libsqlite3-dev
# macOS
brew install sqlite3
then rebuild and reinstall the Python version you are using. If you use
pyenv
, this will look something like
pyenv install --force <PYTHON_VERSION>
# If that doesn't work, try
PYTHON_CONFIGURE_OPTS="--enable-loadable-sqlite-extensions" pyenv install --force <PYTHON_VERSION>
Conflicts
Proxy objects
Python objects that opaquely wrap other objects by overriding Python builtins
like __name__
and __class__
can cause tracing issues in YourBase that may
manifest as errors from within those proxy objects. If you experience these
issues, you can set
export YOURBASE_TIMID=true
to use a slower tracing algorithm that will avoid these errors. Tracing overhead is dramatically increased using this flag, so we don't recommend setting this if you are not experiencing issues.
Plugin pytest-xdist
The YourBase Test Selection and pytest-xdist
plugins have similar goals, reducing
the overall test execution time of tests, but take different approaches to solving
the problem. As such, there are conflicts when both plugins are enabled. When
using the YourBase Test Selection plugin, please uninstall pytest-xdist or
execute pytest-xdist with NUMCPUS=0.
Changelog
- 5.2.4 (2021-06-04)
- Adds a temporary workaround to a
pytest
behavior that causes skipped tests' teardown hooks to be run even when their corresponding setup hooks weren't; all setup and teardown hooks will now be run for skipped tests
- Adds a temporary workaround to a
- 5.2.3 (2021-05-28)
- Demotes a superfluous warning to a debug message
- 5.2.2 (2021-05-28)
- Fixes a possibility of duplicate error messages in observation mode
- 5.2.0 (2021-05-28)
- Adds observation mode
- Adds optional anonymized telemetry
- 5.1.6 (2021-05-26)
- Improves documentation
- Improves log output
- Fixes a bug where blank/absent/unreadable file paths for Python code would cause an error when traced
- Fixes a bug where a remote dependency graph could be found and selected, but not used
- In pytest, tests not run due to cohorting are now deselected (changed from selected but skipped)
- Improved error handling in the face of
pytest-xdist
- Fixes a bug where a pytest run that selected 0 tests would be interpreted as failed
- Fixes a bug where attaching to unittest hooks then using pytest to run a
unittest.TestCase
test would error - Standardizes terminology to "dependency graph" over "tracing data"
- 5.1.5 (2021-05-18)
- When debug mode is on, debug output is now sent to both stdout and file (changed from just file)
- 5.1.4 (2021-05-18)
- Fixes a bug with
unittest
support that could yield a blank dependency graph - Fixes a bug with
unittest
support that could cause a dependency graph to be written even for failed tests
- Fixes a bug with
- 5.1.3 (2021-05-18)
- Fixes an error condition if
pytest
isn't installed
- Fixes an error condition if
- 5.1.2 (2021-05-17)
- Fixes CircleCI sharded environments from not being inherited by YourBase correctly
- 5.1.1 (2021-05-17)
- Adds first-party support for test parallelization
- 5.0.10 (2021-05-13)
- Fixes a compatibility issue with Celery
- Fixes a compatibility issue with "proxy objects" causing tests to error
- Improves error messages related to Git availability
- 5.0.9 (2021-05-11)
- Fixes an issue processing certain styles of PEP 263 tags (e.g.
# -*- coding: utf-8 -*-
) - Adds some friendlier error messages and/or fallbacks caused by Git issues
- Fixes an issue processing certain styles of PEP 263 tags (e.g.
- 5.0.7 (2021-05-06)
- Fixes a JSON decoding issue present in Python 3.5
- Fixes a breaking bug when YourBase is enabled alongside tests that use
moto
mocks
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Hashes for yourbase-6.0.0a7-py39-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88bd32a09ee33816bfcdd5c8d1f0e89ec93d21564b9c855834c8fe858343bdba |
|
MD5 | ea026a9c8b1a14c3b3cbf12514187f75 |
|
BLAKE2b-256 | 01a5ae7f9ecb7af28f51d21f691bd0bb4fab72170205b2ceb626e5cb614a875e |
Hashes for yourbase-6.0.0a7-py38-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3cf65881c7eefe26ffc803c362742d191f62af6c7f7f3b2d61710f64dd9f7133 |
|
MD5 | 330cdc240627e86425dddf659f536a65 |
|
BLAKE2b-256 | 3a27ffaf51acf02361dce395052a1565a15cef12762ef8dc73de2c45bb3594ef |
Hashes for yourbase-6.0.0a7-py37-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21e7626c36c7e9b457f65aac05772835a46121c46b0040c2ed16960ae00f40cb |
|
MD5 | 9d52bb5e0d019d90ebc6217ef3eac240 |
|
BLAKE2b-256 | fab1d55a546cbeb15d11b0925c414d758745bd7e165f617c0cbcd07dd058b89f |
Hashes for yourbase-6.0.0a7-py36-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d248d99ccb29236f2a03827dcdfb29a631dd2d9ef190401f5043457f38dff48 |
|
MD5 | cceae249fba07623794763b3836a7aaa |
|
BLAKE2b-256 | 0dbdc6172f8a64de2241e0936fe70884e9653bfa2731a362ed8853796abc499a |
Hashes for yourbase-6.0.0a7-py35-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ad73b54d0e8884a6e5953aabeeafbab510256582133e7af49dfeaffce501ff6 |
|
MD5 | cd9d5f09a7e5b0e611da0e9a46e2053a |
|
BLAKE2b-256 | 132f5a161f34c7bab3a61117806f012e4e8549da3d5b1393f6651ce2f861d4e3 |
Hashes for yourbase-6.0.0a7-py27-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 132c0fb266399dfe36c494b2dd966178e1627b40b7c83bafa36e9b9c406297d0 |
|
MD5 | 191a29179bc3b2b6ed82849c5bd1f984 |
|
BLAKE2b-256 | 23c0d9e3dffe73c094ad98a2473d2689e7e8919c9e30967ff4a1a84e9b596ff6 |