# Spock Test Schedule
# This file lists all test cases to be run by the test suite

# Basic functionality tests
test: 001_basic
test: 002_create_subscriber

# Replication tests
test: 003_cascade_replication
test: 004_non_default_repset

# Advanced functionality tests
# test: 005_daylight_savings
# test: 006_sync_during_write
test: 009_zodan_add_remove_nodes
test: 010_zodan_add_remove_python

# Test could timeout while waiting; 009 and 010 have coverage
#test: 012_zodan_basics

test: 013_origin_change_restore

# Tests, consuming too much time to be launched on each check:
#test: 011_zodan_sync_third
#
# Use GitHub Actions to launch them (see workflows/zodan_sync.yml for an example
# Also, it may be run locally by a bash script like the following:
#
# for i in {1..1000}; do
#    env PROVE_TESTS="t/011_zodan_sync_third.pl" make check_prove 1>out.txt 2>err.txt
#    status=$?
#    if [ $status -ne 0 ]; then
#        echo "make check failed with status $status on iteration $i"
#        break
#    fi
# done
test: 016_sub_disable_missing_relation

