Skip to content

Commit

Permalink
Merge pull request #298 from sot/kadi-test
Browse files Browse the repository at this point in the history
Don't warn if kadi user can't access db
  • Loading branch information
jeanconn authored Apr 16, 2024
2 parents 4aca4cf + 061254c commit 24545ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mica/report/tests/test_write_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
except Exception as e:
HAS_SYBASE_ACCESS = False

# If the user should have access, warn about the issue.
if on_head_network():
# If the user should have access, warn about the issue. kadi user does not have access.
if on_head_network() and user != 'kadi':
warn(f"On HEAD but Sqsh did not work. {e}")


Expand Down

0 comments on commit 24545ef

Please sign in to comment.