os.path.join -> urljoin to allow windows support #84
Workflow file for this run
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: test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Fetch and set up Kowalski | |
uses: actions/checkout@v2 | |
with: | |
repository: skyportal/kowalski | |
path: kowalski | |
- name: Configure and spin up Kowalski, ingest test data | |
run: | | |
cd kowalski | |
python -m pip install --upgrade pip | |
cp docker-compose.defaults.yaml docker-compose.yaml | |
make docker_build && make docker_up | |
make docker_test | |
- name: Install penquins | |
run: | | |
python setup.py install | |
- name: Run penquins' tests | |
run: | | |
python -m pytest -s tests/test_penquins.py |