Skip to content

Commit

Permalink
avoid checking for update in CI (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
hubertdeng123 authored Dec 12, 2024
1 parent 0f26f0b commit 1a86f18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devservices/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def main() -> None:
else:
parser.print_help()

if args.command != "update":
if args.command != "update" and os.environ.get("CI") != "true":
newest_version = check_for_update()
if newest_version != current_version:
console.warning(
Expand Down

0 comments on commit 1a86f18

Please sign in to comment.