Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Order payloads by exploitability and impact #16

Merged
merged 16 commits into from
Dec 4, 2023
Merged
Prev Previous commit
Next Next commit
Test: debugging workflows
Frissi0n committed Dec 3, 2023
commit f834c2ea5cda1908c032e4dcb5c5e91b62df29b0
2 changes: 1 addition & 1 deletion .github/workflows/docker-pytest.yml
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ jobs:
docker run --name gtfonow_test_${{ matrix.python-version }} -d gtfonow_test:${{ matrix.python-version }}

- name: Run Pytest
run: docker exec gtfonow_test_${{ matrix.python-version }} su -l lowpriv -c "pytest -v --cov=gtfonow --cov-report=xml --cov-report=term-missing"
run: sleep 5; docker exec gtfonow_test_${{ matrix.python-version }} su -l lowpriv -c "pytest -v --cov=gtfonow --cov-report=xml --cov-report=term-missing"
- name: Copy coverage report from Docker container to host
run: docker cp gtfonow_test_${{ matrix.python-version }}:/home/lowpriv/coverage.xml .