Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Commit 417cd91

Browse files
authored
Merge pull request #16 from devblackops/feat/tags
Fixes #10 by adding support for filtering on Pester tags.
2 parents 14a5939 + e8540d0 commit 417cd91

File tree

6 files changed

+250
-90
lines changed

6 files changed

+250
-90
lines changed

Modules/OperationValidation/OperationValidation.Format.ps1xml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</TableRowEntries>
2525
</TableControl>
2626
</View>
27-
27+
2828
<View>
2929
<Name>OperationValidation</Name>
3030
<ViewSelectedBy>
@@ -68,6 +68,17 @@
6868
</CustomItem>
6969
</Frame>
7070

71+
<Text>Tags: </Text>
72+
<Frame>
73+
<LeftIndent>4</LeftIndent>
74+
<CustomItem>
75+
<ExpressionBinding>
76+
<PropertyName>Tags</PropertyName>
77+
</ExpressionBinding>
78+
<NewLine/>
79+
</CustomItem>
80+
</Frame>
81+
7182
<Text>File: </Text>
7283
<Frame>
7384
<LeftIndent>4</LeftIndent>
@@ -78,7 +89,7 @@
7889
<NewLine/>
7990
</CustomItem>
8091
</Frame>
81-
92+
8293
<Text>FilePath: </Text>
8394
<Frame>
8495
<LeftIndent>4</LeftIndent>

Modules/OperationValidation/OperationValidation.psd1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Description = 'A set of tools for executing validation of the operation of a sys
4949
# ProcessorArchitecture = ''
5050

5151
# Modules that must be imported into the global environment prior to importing this module
52-
# RequiredModules = @()
52+
RequiredModules = @('Pester')
5353

5454
# Assemblies that must be loaded prior to importing this module
5555
# RequiredAssemblies = @()
@@ -70,13 +70,13 @@ FormatsToProcess = @("OperationValidation.Format.ps1xml")
7070
FunctionsToExport = @('Get-OperationValidation','Invoke-OperationValidation')
7171

7272
# Cmdlets to export from this module
73-
CmdletsToExport = '*'
73+
# CmdletsToExport = '*'
7474

7575
# Variables to export from this module
76-
VariablesToExport = '*'
76+
# VariablesToExport = '*'
7777

7878
# Aliases to export from this module
79-
AliasesToExport = '*'
79+
# AliasesToExport = '*'
8080

8181
# DSC resources to export from this module
8282
# DscResourcesToExport = @()

0 commit comments

Comments
 (0)