Merge helpers function from node, boost, python. (#2)

* setup boost helpers

* add ci for pull requests

* pester for ci

* resolving issue with pester 5

* remove Output flag

* check tests with 4 version

* try common tests variant

* added requires

* move to 5 version

* try to add assert module

* fix scope

* use new regex for python

* fix regex in tests

* Pester 4.10.1

* EnableExit

* fix synopsys

* fix creating tar archive

Co-authored-by: Dmitry Shibanov <v-dmshib@microsoft.com>
Co-authored-by: Maxim Lobanov <v-malob@microsoft.com>
This commit is contained in:
Dmitry Shibanov
2020-06-01 17:46:35 +03:00
committed by GitHub
parent 8affb5df76
commit d8c3ce72ee
13 changed files with 422 additions and 184 deletions

23
.github/workflows/common_tests.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Run tests
on: [pull_request]
jobs:
CommonTests:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Pester
shell: pwsh
run: |
Install-Module Pester -Force -Scope CurrentUser -RequiredVersion 4.10.1
Install-Module Assert -Force -Scope CurrentUser
- name: Run tests
shell: pwsh
run: |
Import-Module Pester
Import-Module Assert
Invoke-Pester -EnableExit