Skip to content

Commit a52803d

Browse files
committed
Refactor e2e_tests workflow to streamline directory navigation and improve dependency installation
1 parent 7da2b5f commit a52803d

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/e2e_tests.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,17 @@ jobs:
2424
python-version: '3.x' # Adjust the version as needed
2525

2626
# Install opal dependencies
27-
- name: Install dependencies
27+
- name: Install opal dependencies
2828
run: pip install -r requirements.txt
2929

3030
# Ensure Docker is installed and running
3131
- name: Set up Docker
3232
uses: docker/setup-buildx-action@v2
3333

34-
# cd into the tests directory
35-
- name: cd into tests directory
36-
run: cd ./tests
37-
3834
# Install test dependencies
39-
- name: Install dependencies
40-
run: pip install -r requirements.txt
35+
- name: Install test dependencies
36+
run: cd ./tests && pip install -r requirements.txt
4137

4238
# Run the tests using the script
4339
- name: Run tests
44-
run: ls -la && ./run.sh
40+
run: cd ./tests && ./run.sh

0 commit comments

Comments
 (0)