Sfoglia il codice sorgente

Remove clang-tidy -fix flag handlign (doesn't work)

tags/v0.0.1
Thom Wiggers 5 anni fa
parent
commit
fbe01a7d3c
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 1BB0A7CE26E363
1 ha cambiato i file con 1 aggiunte e 6 eliminazioni
  1. +1
    -6
      test/test_linter.py

+ 1
- 6
test/test_linter.py Vedi File

@@ -8,7 +8,7 @@ import pytest
import helpers
import pqclean

additional_flags = []
additional_flags = [] #['-fix-errors']


@pytest.mark.parametrize(
@@ -46,9 +46,4 @@ def test_clang_tidy(implementation: pqclean.Implementation):

if __name__ == "__main__":
import sys
# allow a user to specify --fix-errors, to immediately fix errors
if len(sys.argv) >= 2 and sys.argv[1] == '-fix-errors':
additional_flags = ['-fix-errors']
del sys.argv[1]

pytest.main(sys.argv)

Caricamento…
Annulla
Salva