Skip to content

Commit 035eb6e

Browse files
committed
Fix client test ci
1 parent 0974231 commit 035eb6e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/python-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ jobs:
5858
pytest examples/simple/tests/test_handlers.py
5959
- name: Install the Python dependencies for the client telemetry eventlog example
6060
run: |
61-
cd examples/client_eventlog && pip install -e .
61+
cd examples/client_eventlog_example && pip install -e .
6262
- name: Run the tests for the client telemetry eventlog example
6363
run: |
64-
pytest examples/client_eventlog/tests
64+
pytest examples/client_eventlog_example/tests
6565
- name: Coverage
6666
if: ${{ matrix.python-version != 'pypy3' }}
6767
run: |

.github/workflows/python-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ jobs:
5858
pytest examples/simple/tests/test_handlers.py
5959
- name: Install the Python dependencies for the client telemetry eventlog example
6060
run: |
61-
cd examples/client_eventlog && pip install -e .
61+
cd examples/client_eventlog_example && pip install -e .
6262
- name: Run the tests for the client telemetry eventlog example
6363
run: |
64-
pytest examples/client_eventlog/tests
64+
pytest examples/client_eventlog_example/tests
6565
- name: Coverage
6666
if: ${{ matrix.python-version != 'pypy3' }}
6767
run: |

.github/workflows/python-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
pytest examples/simple/tests/test_handlers.py
5959
- name: Install the Python dependencies for the client telemetry eventlog example
6060
run: |
61-
cd examples/client_eventlog && pip install -e .
61+
cd examples/client_eventlog_example && pip install -e .
6262
- name: Run the tests for the client telemetry eventlog example
6363
run: |
64-
pytest examples/client_eventlog/tests
64+
pytest examples/client_eventlog_example/tests

0 commit comments

Comments
 (0)