-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
59 lines (46 loc) · 2.26 KB
/
.env.example
File metadata and controls
59 lines (46 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# pCloud Configuration
PCLOUD_AUTH_TOKEN=your_auth_token_here
PCLOUD_LOCATION_ID=eu
# pCloud Drive Path (where your pCloud Drive is mounted)
# macOS: DRIVE_PATH=~/pCloud Drive
# Windows: P:\
# Linux: ~/pCloudDrive
DRIVE_PATH=~/pCloud Drive
# An absolute path within pcloud in which to run drive tests.
# This is the folder in which TEST_FOLDER will get created. It must exist prior
# to running tests. The root of the pcloud account will be used if not provided.
TEST_ROOT=/
# The name of the test folder created for each test. This folder will be created
# in TEST_ROOT (for drive tests) or SYNC_FOLDER_REMOTE_PATH (for sync tests).
TEST_FOLDER=test-sync-automation
# Local path to folder that syncs with pCloud (uncomment to use).
# This is the path on your local filesystem.
# Used when running sync tests (tests/sync/).
# SYNC_FOLDER_LOCAL_PATH=~/pCloudSync/
# Remote path in pCloud where the local folder syncs to (uncomment to use)
# This is the path in your pCloud account (e.g. /pCloudSync or /work/myproject)
# Used when running sync tests (tests/sync/).
# SYNC_FOLDER_REMOTE_PATH=/pCloudSync
# Set to true to delete and recreate the test folder at the start of each run.
# Useful when a previous run failed to clean up.
# CLEAN_TEST_FOLDER=false
# Sync timeout in seconds
# The default timeout (in seconds) to wait for a local change to be reflected remotely
# or vice-versa.
SYNC_TIMEOUT=120
# Skip GB-sized file tests (they are very slow)
# Set to "false" to enable GB file tests (1GB, 2GB, 5GB)
SKIP_GB_TESTS=true
# An absolute path to the log files produced by the psynclib library.
# LOG_FILE_PATH=/tmp/psync_err.log
# Whether to delete the log file produced by the psynclib library at the start
# of each test session. If true, you must also set the LOG_FILE_PATH.
# DELETE_LOG_FILE_ON_SESSION_START=false
# When to store the log files produced by the psynclib library.
# - always: Log files will be stored at the end of each test session.
# - none: Log files will never be stored.
# If log files will be stored, you must also set LOG_FILE_PATH and LOG_FILE_STORAGE_DIR.
# LOG_FILE_STORAGE_STRATEGY=none
# An absolute path to the local directory where log files from the psynclib library
# will be stored. See LOG_FILE_STORAGE_STRATEGY.
# LOG_FILE_STORAGE_DIR=~/test-sync-automation