https://github.com/performant-labs/testor
Command-line tool designed to work with Automated Testing Kit
https://github.com/performant-labs/testor
drupal
Last synced: 5 months ago
JSON representation
Command-line tool designed to work with Automated Testing Kit
- Host: GitHub
- URL: https://github.com/performant-labs/testor
- Owner: Performant-Labs
- Created: 2024-08-15T17:06:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-17T22:11:00.000Z (about 1 year ago)
- Last Synced: 2025-01-31T13:43:28.836Z (about 1 year ago)
- Topics: drupal
- Language: PHP
- Homepage: https://www.drupal.org/project/automated_testing_kit
- Size: 125 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.txt
Awesome Lists containing this project
README
# Testor
[](https://github.com/Performant-Labs/testor/actions/workflows/php.yml?query=workflow%3APHP)
A command-line database and file snapshot management tool.
- Stores snapshots in an S3 or SFTP server.
- Can run a sanitization task when making the snapshot.
- Configured by default to work with Drupal.
## Full Documentation
Please see https://performantlabs.com/testor/testor.
## Installation
Via composer:
```shell
composer require performantlabs/testor
vendor/bin/testor self:init
```
Via composer under DDEV:
```shell
ddev composer require performantlabs/testor
ddev exec testor self:init
```
Directly download the latest release as a PHAR:
```shell
curl -L -o testor https://github.com/Performant-Labs/testor/releases/latest/download/testor.phar
php testor self:init
```
Add the S3/SFTP credentials and site name to the .testor.yml configuration
file. See the documentation.