Barney Sowood 1 год назад
Родитель
Сommit
6f897d95e9
2 измененных файлов с 4 добавлено и 4 удалено
  1. 2 2
      .github/workflows/flake8.yaml
  2. 2 2
      .github/workflows/test.yaml

+ 2 - 2
.github/workflows/flake8.yaml

@@ -18,6 +18,6 @@ jobs:
       - name: Install tox
         run: python -m pip install tox
       - name: Setup flake8
-        run: tox -vv --notest -e flake8
+        run: tox --notest -e flake8
       - name: Run flake8
-        run: tox -vv -e flake8
+        run: tox -e flake8

+ 2 - 2
.github/workflows/test.yaml

@@ -44,6 +44,6 @@ jobs:
         env:
           DEBIAN_FRONTEND: noninteractive
       - name: Setup tests
-        run: tox -vv --notest -e py${{ matrix.py }}-${{ matrix.netapi }}-${{ matrix.salt }}
+        run: tox --notest -e py${{ matrix.py }}-${{ matrix.netapi }}-${{ matrix.salt }}
       - name: Run tests
-        run: tox -vv -e py${{ matrix.py }}-${{ matrix.netapi }}-${{ matrix.salt }}
+        run: tox -e py${{ matrix.py }}-${{ matrix.netapi }}-${{ matrix.salt }}