Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added to fixtures an extra study-specific iRODS group #293

Merged
merged 2 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ my $build = WTSI::DNAP::Utilities::Build->new
},
recommends => {
'Net::LDAP' => '0',
'WTSI::DNAP::Warehouse::Schema' => '0',
});

$build->create_build_script;
3 changes: 2 additions & 1 deletion t/lib/WTSI/NPG/DriRODSTest.pm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ my $have_admin_rights =
# Prefix for test iRODS data access groups
my $group_prefix = 'ss_';
# Groups to be added to the test iRODS
my @irods_groups = map { $group_prefix . $_ } (0);
my @irods_groups = map { $group_prefix . $_, $group_prefix . $_ . '_human' }
(0);
# Groups added to the test iRODS in fixture setup
my @groups_added;
# Enable group tests
Expand Down
3 changes: 2 additions & 1 deletion t/lib/WTSI/NPG/iRODS/CollectionTest.pm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ my $have_admin_rights =
# Prefix for test iRODS data access groups
my $group_prefix = 'ss_';
# Groups to be added to the test iRODS
my @irods_groups = map { $group_prefix . $_ } (10, 100);
my @irods_groups = map { $group_prefix . $_, $group_prefix . $_ . '_human' }
(10, 100);
# Groups added to the test iRODS in fixture setup
my @groups_added;

Expand Down
3 changes: 2 additions & 1 deletion t/lib/WTSI/NPG/iRODS/DataObjectTest.pm
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ my $have_admin_rights =
# Prefix for test iRODS data access groups
my $group_prefix = 'ss_';
# Groups to be added to the test iRODS
my @irods_groups = map { $group_prefix . $_ } (10, 100);
my @irods_groups = map { $group_prefix . $_, $group_prefix . $_ . '_human' }
(10, 100);
# Groups added to the test iRODS in fixture setup
my @groups_added;

Expand Down
3 changes: 2 additions & 1 deletion t/lib/WTSI/NPG/iRODSTest.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ my $irods_tmp_coll;
# Prefix for test iRODS data access groups
my $group_prefix = 'ss_';
# Groups to be added to the test iRODS
my @irods_groups = map { $group_prefix . $_ } (0, 10, 100);
my @irods_groups = map { $group_prefix . $_, $group_prefix . $_ . '_human' }
(0, 10, 100);
# Groups added to the test iRODS in fixture setup
my @groups_added;
# Enable group tests
Expand Down