fixed tests #128
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Run Tests' | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-tests: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
python-version: | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
# - "3.13" | |
exclude: | |
- os: macos-latest | |
python-version: "3.7" | |
runs-on: ${{matrix.os}} | |
name: 'Run Tests on ${{matrix.os}} with Python ${{matrix.python-version}}' | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
if: matrix.os == 'macos-latest' | |
run: python${{ matrix.python-version }} -m pip install --upgrade pip | |
- name: Install dependencies from requirements.txt | |
shell: bash | |
run: | | |
python3 -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Install psycopg2 for non-Windows OS | |
if: matrix.os != 'windows-latest' | |
run: | | |
pip install psycopg2-binary | |
# Windows specific | |
- name: Install psycopg2-binary for Windows | |
if: matrix.os == 'windows-latest' | |
run: | | |
pip install psycopg2-binary | |
shell: powershell | |
# End Windows specific | |
- name: Install pystackql | |
run: | | |
pip install . | |
- name: Run tests | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
GOOGLE_CREDENTIALS: ${{ secrets.GOOGLE_CREDENTIALS }} | |
AWS_REGION: ${{ vars.AWS_REGION }} | |
AWS_REGIONS: ${{ vars.AWS_REGIONS }} | |
GCP_PROJECT: ${{ vars.GCP_PROJECT }} | |
GCP_ZONE: ${{ vars.GCP_ZONE }} | |
run: | | |
python3 -m tests.pystackql_tests |