Skip to content

Commit 4a2df37

Browse files
python
1 parent cef7556 commit 4a2df37

File tree

5 files changed

+45
-2
lines changed

5 files changed

+45
-2
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: python2-pytest
2+
on:
3+
push:
4+
branches: [ master ]
5+
pull_request:
6+
branches: [ master ]
7+
workflow_dispatch:
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: ruby/setup-python@v2
14+
with:
15+
python-version: 2.7
16+
- run: API_KEY=${{ secrets.API_KEY }} make ci-env
17+
- run: cd python2-pytest && make test
18+
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: python3-robotframework
2+
on:
3+
push:
4+
branches: [ master ]
5+
pull_request:
6+
branches: [ master ]
7+
workflow_dispatch:
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: ruby/setup-python@v2
14+
with:
15+
python-version: 3.6
16+
- run: API_KEY=${{ secrets.API_KEY }} make ci-env
17+
- run: cd python3-robotframework && make test
18+

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ See developer page for [more guides and documentation](https://www.mailslurp.com
5151
| --- | --- |
5252
| [PHP Composer PHPUnit](./php-composer-phpunit) | ![php-composer-phpunit](https://github.com/mailslurp/examples/actions/workflows/php-composer-phpunit.yml/badge.svg?branch=master) |
5353

54+
### Python
55+
56+
| Project | Test status |
57+
| --- | --- |
58+
| [Python2 PyTest](./python2-pytest) | ![python2-pytest](https://github.com/mailslurp/examples/actions/workflows/python2-pytest.yml/badge.svg?branch=master) |
59+
| [Python3 Robot Framework](./python3-robotframework) | ![python3-robotframework](https://github.com/mailslurp/examples/actions/workflows/python3-robotframework.yml/badge.svg?branch=master) |
60+
5461
### Ruby
5562

5663
| Project | Test status |

python2-pytest/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
mailslurp-client==7.0.9
1+
mailslurp-client==15.0.1
22
pytest==4.3.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
robotframework >= 4.0.0
22
robotframework-seleniumlibrary >= 5.1.3
3-
mailslurp-client >= 11.5.10
3+
mailslurp-client >= 15.0.1
44
webdrivermanager >= 0.10.0

0 commit comments

Comments
 (0)