Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
convert to bool before returning
  • Loading branch information
masci committed Jul 24, 2019
commit ca8e25b0248d4febc9806b187cdccd5b150b0b86
3 changes: 2 additions & 1 deletion test/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@


def running_on_ci():
return os.getenv('APPVEYOR') or os.getenv('DRONE')
val = os.getenv('APPVEYOR') or os.getenv('DRONE')
return val is not None


def test_command_help(run_command):
Expand Down