remove duplicate pytest command, set skip_existing=True

pull/1799/head
alpharush 2 years ago
parent 38c13da151
commit 6a0fb7ca80
  1. 2
      .github/workflows/test.yml
  2. 2
      tests/e2e/detectors/test_detectors.py

@ -43,7 +43,7 @@ jobs:
- name: e2e / ast parsing
run: |
pytest --cov=slither --cov-append pytest tests/e2e/solc_parsing/test_ast_parsing.py -n auto
pytest --cov=slither --cov-append tests/e2e/solc_parsing/test_ast_parsing.py -n auto
python -m coverage report
- name: e2e / compilation

@ -1773,4 +1773,4 @@ if __name__ == "__main__":
_generate_test(next_test)
elif sys.argv[1] == "--compile":
for next_test in ALL_TESTS:
_generate_compile(next_test, skip_existing=False)
_generate_compile(next_test, skip_existing=True)

Loading…
Cancel
Save