diff options
| author | Sorin Sbarnea <ssbarnea@redhat.com> | 2020-12-02 17:21:46 +0000 |
|---|---|---|
| committer | Sorin Sbarnea <ssbarnea@redhat.com> | 2020-12-02 18:13:42 +0000 |
| commit | a7c26ce079b3797f68f8a574942be19d562c8a4c (patch) | |
| tree | a66d96631f54783a79fcd9095b889343b1eee729 /.github/workflows | |
| parent | f6cccbf199efa1fc05b7d55b38327ec56cff6325 (diff) | |
| download | testtools-a7c26ce079b3797f68f8a574942be19d562c8a4c.tar.gz | |
Fix github actions
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1b47c26..7408feb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,6 +13,8 @@ jobs: steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Set up Python ${{ matrix.python }} (deadsnakes) uses: deadsnakes/action@v1.0.0 @@ -39,10 +41,10 @@ jobs: - name: Install dependencies run: | - python -m pip install -U pip - python -m pip install -U wheel setuptools - python -m pip install sphinx Twisted - python -m pip install .[test] + python3 -m pip install -U pip + python3 -m pip install -U wheel setuptools + python3 -m pip install sphinx Twisted + python3 -m pip install ".[test]" - name: Tests shell: bash |
