Skip to content

Commit a7435b2

Browse files
committed
test 3
1 parent cbf313d commit a7435b2

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/test-build-publish.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,14 @@ jobs:
3636
- name: Checkout code
3737
uses: actions/checkout@v3
3838

39+
- name: Install dependencies
40+
run: |
41+
python -m pip install --upgrade pip
42+
pip install -e .
43+
pip install -r ./requirements/development.txt
44+
3945
- name: Run E2E tests
4046
run: |
41-
git update-index --chmod=+x ./tests/e2e/scripts/test_e2e_runner.sh
4247
sh ./tests/e2e/scripts/test_e2e_runner.sh
4348
4449
# run only in main and in pull request to `main` and in publish release

tests/e2e/scripts/test_e2e_runner.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,9 @@ done
3535
echo "Valid custom cert found!"
3636

3737
# Copy valid custom cert to target dir
38-
# chown -R $USER:$USER ~/.test_mitmproxy
3938
sudo cp ~/.test_mitmproxy/mitmproxy-ca.pem tests/e2e/mitmproxy-ca.pem
4039

4140
echo "E2E processing..."
42-
pip install -e .
43-
pip install -r ./requirements/development.txt
4441
python -m pytest -s --capture=sys -v --cov=domaintools tests/e2e
4542

4643
# Clean up containers

0 commit comments

Comments
 (0)