File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 79
79
# Only the tox environment specified in the tox.ini gh-actions is run
80
80
run : tox -e test -- --ignore=tests/e2e
81
81
82
+ tests-e2e :
83
+ name : End to end tests and coverage
84
+ runs-on : [ self-hosted, Windows, pyedb-core ]
85
+ steps :
86
+ - uses : actions/checkout@v4
87
+ - name : Set up Python ${{ matrix.python-version }}
88
+ uses : actions/setup-python@v4
89
+ with :
90
+ python-version : ${{ env.MAIN_PYTHON_VERSION }}
91
+
92
+ - name : Install dependencies
93
+ run : |
94
+ python -m pip install --upgrade .[tests]
95
+ python -m pip install --upgrade tox-gh-actions
96
+
97
+ - name : Test with tox
98
+ # Only the tox environment specified in the tox.ini gh-actions is run
99
+ run : tox -e test -- tests/e2e
100
+
82
101
doc-build :
83
102
name : " Doc build"
84
103
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments