-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #276 from anuraaga/istributioncheck
Add distribution channel smoke test
- Loading branch information
Showing
5 changed files
with
35 additions
and
0 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,19 @@ | ||
name: Continuous monitoring of distribution channels | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 */6 * * *' | ||
|
||
jobs: | ||
smoke-tests: | ||
name: Run smoke tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- run: pip install tox | ||
- name: Run smoke tests | ||
run: tox -c tox-distributioncheck.ini |
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 |
---|---|---|
|
@@ -20,3 +20,5 @@ pip-selfcheck.json | |
|
||
.coverage* | ||
htmlcov | ||
|
||
venv |
Empty file.
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,5 @@ | ||
from aws_xray_sdk.core.models.segment import Segment | ||
|
||
def test_create_segment(): | ||
segment = Segment('test') | ||
assert segment.name == 'test' |
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,9 @@ | ||
[tox] | ||
skipsdist = true | ||
|
||
[testenv:distribution-check] | ||
deps = | ||
pytest > 5.2.0 | ||
aws-xray-sdk | ||
commands = | ||
pytest tests/distributioncheck |