#Verify Configuration Locally
Before pushing to GitHub, validate your configuration locally on a virtual machine running Ubuntu 22.04 LTS.
These commands assume your development environment runs on MacOS and uses homebrew as a package manager.
#1. Start Vagrant virtual machine
From the root of project directory, create and log in to a virtual machine. Firstly, install vagrant on your local machine.
Then, create Vagrantfile
to configure your virtual machine from the example below.
Next, create the virtual machine running Ubuntu 22.04 LTS and log in with these commands:
#2. Verify base_image
and before_test_run
commands
Then, inside the virtual machine, verify the base_image and before_test_run commands. You can copy the commands from your .turbo_test.toml
file or the above sample configurations. For example:
Don't forget to set environment variables.
Any environment variables set in the .turbo_test.toml env configuration should also be set in the vagrant virtual machine.
#3. Verify unit test execution
Now, you should be able to execute a unit test after your base_image and before_test_run commands complete successfully.
For example, from the following configuration file:
Execute this unit test:
#4. Verify test_run
test file glob
Lastly, check the UNIX file glob for your test runs. Give the following configuration file:
The output of this command should be a list of all your test files.
After successfully validating your configuration locally, verify your configuration on TURBO TEST.