diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 17:39:46 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 17:39:46 +0300 |
commit | 8d2422274ae948f7412b6960597f5de91f3d8830 (patch) | |
tree | 88cc766fb5b0b11b685840dde7a896600583be6f /.github/workflows/ci.yml | |
parent | rename "ssh" to "clone_via_ssh" in config (diff) | |
download | cgitize-8d2422274ae948f7412b6960597f5de91f3d8830.tar.gz cgitize-8d2422274ae948f7412b6960597f5de91f3d8830.zip |
move all tests to test/
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da2f831..feb74f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - name: Install dependencies run: pip install -r requirements.txt - name: Integration tests - run: ./.ci/local/test.sh + run: ./test/integration/local/test.sh - name: Unit tests run: python -m unittest --buffer @@ -37,7 +37,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Integration tests - run: ./.ci/docker/test.sh + run: ./test/integration/docker/test.sh publish_docker: needs: [test_local, test_docker] |