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 c8c2c93 commit db35a7a
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.environ("RCLONE_DRIVE_ACCESS_TOKEN")
RCLONE_DRIVE_REFRESH_TOKEN = os.environ("RCLONE_DRIVE_REFRESH_TOKEN")
RCLONE_EXPIRY_TOKEN = os.environ("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 db35a7a

Please sign in to comment.