Skip to content
This repository has been archived by the owner on Jan 16, 2023. It is now read-only.

Fix incorrect branch names #209

Merged
merged 1 commit into from Sep 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Expand Up @@ -2,7 +2,7 @@ name: Static analysis
on:
push:
branches:
- main
- master
pull_request:
jobs:
lint:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/test-suite-unreleased-django.yaml
Expand Up @@ -20,9 +20,7 @@ jobs:
pip install --upgrade https://github.com/django/django/archive/main.tar.gz
pip install --upgrade -r test-requirements.txt
pip install .
- name: Run all tests
- name: Run non-live tests
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
GCLOUD_CREDENTIALS: ${{ secrets.GCLOUD_CREDENTIALS }}
SKIP_LIVE_TESTS: true
run: coverage run -m pytest
2 changes: 1 addition & 1 deletion .github/workflows/test-suite.yaml
Expand Up @@ -2,7 +2,7 @@ name: Test Suite
on:
push:
branches:
- main
- master
pull_request:
jobs:
test:
Expand Down