Skip to content

Commit 1161d6a

Browse files
committed
Update the GitHub Workflows build steps for testing
1 parent e355356 commit 1161d6a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/python-package.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@ jobs:
4949
run: |
5050
echo "def test_1(): pass" > nothing.py
5151
pytest nothing.py
52+
- name: Make sure nosetests is working
53+
run: |
54+
echo "def test_2(): pass" > nothing2.py
55+
nosetests nothing2.py
56+
- name: Run pytest verify_framework.py --browser=chrome --headless
57+
run: |
58+
pytest examples/unit_tests/verify_framework.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
5259
- name: Run pytest boilerplate_test.py --browser=chrome --headless
5360
run: |
5461
pytest examples/boilerplates/boilerplate_test.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml

0 commit comments

Comments
 (0)