Skip to content

Commit

Permalink
Also update test structure
Browse files Browse the repository at this point in the history
  • Loading branch information
bpblanken committed Apr 3, 2024
1 parent f998be9 commit 69d4009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unit_test/hail_search/test_hail_search_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def test_persistent_volume(self):
p = subprocess.run([*DEFAULT_ARGS, '-f', os.path.join(WORK_DIR, 'persistentvolume.yaml')], capture_output=True, text=True)
p.check_returncode()
self.assertIn('claimName: test-hail-search-pvc', p.stdout)
self.assertIn("command: ['mkdir', '-p', '/datasets/GRCh38/SV_WES', '&&', 'rsync', '-r', '/ssd-datasets/GRCh38/SV_WES/annotations.ht', '/datasets/GRCh38/SV_WES/annotations.ht']", p.stdout)
self.assertIn("command: ['/bin/bash', '-c', 'mkdir -p /datasets/GRCh38/SV_WES && rsync -r /ssd-datasets/GRCh38/SV_WES/annotations.ht /datasets/GRCh38/SV_WES/annotations.ht']", p.stdout)
self.assertIn('volumeHandle: projects/test-project/zones/us-central3-a/disks/test-disk', p.stdout)

if __name__ == '__main__':
Expand Down

0 comments on commit 69d4009

Please sign in to comment.