-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use buildhelpers in the unit tests * Add unit test for ASTFunctions * Add some of the bootstrap function tests * Add more unit tests for the bootstrap functions * Fix ScriptAnazlyer warnings * Fix passing named parameters to Remove-PSSession * Add ConfigurationData tests * Add few unit tests for PSRemotely * Add unit test template for Node.ps1 * Move PSSession creation above InModuleScope block * Feature unittest (#36) consolidated merge of the unit test branch * Add PSDeafult param for New-PSSession - set the EnableNetworkAccess switch on by default for the cmdlet * Add -enabletnetworkaccess switch explicitly - Unit tests failing on Appveyor, adding switch * Move PSSession inside InModuleScope and Describe block * Remove the PSSession creation * Add RDP to worker in appveyor.yml * Fixing the integration tests breaking - build.ps1 - remove ps default parameter setting, no effect - PSRemotely.json - remove required artifacts - PSRemotely.psm1 - set ps default parameter - Basic and ConfigData tests - Typo in the assertion * Replace psake with InvokeBuild - few more minor fixes * Update the .psd1 - minor fix to the InvokeBuild.ps1 * Remove RDP to worker from appveyor.yml * Add few fixes to the quick start doc * Add fix docs badge link * Remove exit with psake build success - where alias replaced * Add Contributing guideline - copied from PSDeploy's - !Deploy to Gallery * Add check to the psdeploy file for the NugetAPIKey - Revert the scope for AllNodes to be global - Fix README * replace write-error with throw in the InvokeBuild - restart winrm service in once in one of the integration test * Add clean up after unit tests complete
- Loading branch information
1 parent
8645114
commit 31a487c
Showing
18 changed files
with
133 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# How to Contribute | ||
|
||
Contributions to PSRemotely would be quite welcome and helpful. This page describes some ideas and guidelines around contributing. | ||
|
||
# What Should I Contribute? | ||
|
||
There are many ways to contribute, including: | ||
|
||
* Open an issue for... | ||
* A bug you find | ||
* A feature you think would be valuable | ||
* A question on using PSRemotely (you might not be the only one with the question) | ||
* Edit the docs to... | ||
* Improve or expand on [existing docs](https://PSRemotely.readthedocs.io) | ||
* Document a deployment type | ||
* Write a 'How do I...' scenario | ||
* Submit pull requests to... | ||
* Improve or expand on the [Readme.md](https://github.com/DexterPOSH/PSRemotely/blob/master/README.md) or this Contributing.md | ||
* Provide bug fixes, new features, cleaner code, or other improvements | ||
|
||
# How Do I Contribute? | ||
|
||
All of these require that you [have a GitHub account](https://github.com/signup/free). | ||
|
||
* [Submit an issue](https://github.com/DexterPOSH/PSRemotely/issues) | ||
* Use the search box and flip through open/closed issues to avoid duplication | ||
* If the issue is for a bug fix, provide reproducible code. If you can't, and you think an issue is still warranted, provide your code, and related details on your environment | ||
* Contribute to [the docs](https://PSRemotely.readthedocs.io) | ||
* Fork the repo | ||
* Checkout and work in the master branch | ||
* Organization is described in the [mkdocs.yml](https://github.com/DexterPOSH/PSRemotely/blob/master/mkdocs.yml) file. If you add a file or section, mkdocs.yml needs to know | ||
* mkdocs.yml points to markdown files in [the docs folder](https://github.com/DexterPOSH/PSRemotely/tree/master/docs) | ||
* Images are stored and accessible from docs/images | ||
* Commit changes | ||
* Submit a pull request to the master branch | ||
* Submit a pull request | ||
* Fork the repo | ||
* Checkout and work in the master branch | ||
* Where possible, add Pester tests for your change | ||
* Submit your pull request to the master branch | ||
|
||
# Additional Resources | ||
* [General GitHub documentation](https://help.github.com/) | ||
* [GitHub forking documentation](https://guides.github.com/activities/forking/) | ||
* [GitHub pull request documentation](https://help.github.com/send-pull-requests/) | ||
* [GitHub Flow guide](https://guides.github.com/introduction/flow/) | ||
* [GitHub's guide to contributing to open source projects](https://guides.github.com/activities/contributing-to-open-source/) | ||
|
||
More to come, just getting this out there. Thanks to RamblingCookieMonster's PSDeploy module for the module organization. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ | |
} | ||
], | ||
"ArtifactsRequired":[ | ||
"DeploymentManifest.xml" | ||
"" | ||
] | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.