Skip to content

Commit

Permalink
make environmental variables required
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Jul 1, 2024
1 parent f863766 commit c8c2c93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/docker_rclone_with_config_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@

from .test_on_data.setup_paths import OUTPUT_PATH

RCLONE_DRIVE_ACCESS_TOKEN = os.getenv("RCLONE_DRIVE_ACCESS_TOKEN")
RCLONE_DRIVE_REFRESH_TOKEN = os.getenv("RCLONE_DRIVE_REFRESH_TOKEN")
RCLONE_EXPIRY_TOKEN = os.getenv("RCLONE_EXPIRY_TOKEN")
RCLONE_DRIVE_ACCESS_TOKEN = os.environ("RCLONE_DRIVE_ACCESS_TOKEN")
RCLONE_DRIVE_REFRESH_TOKEN = os.environ("RCLONE_DRIVE_REFRESH_TOKEN")
RCLONE_EXPIRY_TOKEN = os.environ("RCLONE_EXPIRY_TOKEN")


class TestRcloneWithConfig(TestCase):
Expand Down

0 comments on commit c8c2c93

Please sign in to comment.