From 4110d2bd1520cd2430938db6c815bf0c136d3bec Mon Sep 17 00:00:00 2001 From: Rikko Date: Wed, 31 Aug 2022 06:30:07 +0530 Subject: [PATCH] verbose CI, fetch entire git history --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2c01d00..d04e2fb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,8 @@ jobs: python-version: ["3.10"] steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v3 with: @@ -22,4 +24,4 @@ jobs: pip install -r test/pip_reqs.txt - name: Execute Tests run: | - python -m unittest discover + python -m unittest discover -v