mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
96c9c400bc
* trying move to github actions * move name * remove travis and cleanup * macos and windows coverage * env_vars string * bump * bump * delete old coverage file * remove coverage.xml * add 'make test-codecov' * fix 'make test-codecov' * beginning build phase * combined deploy * try to fix articacts * remove set.cfg wheel tag * install cython before build * fix windows builds * fix windows builds * reenable tests * build docs, test pypi upload * finalize * add change description, fix job conditionals
15 lines
269 B
Bash
Executable File
15 lines
269 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
cd fastapi
|
|
git fetch --tags
|
|
latest_tag_commit=$(git rev-list --tags --max-count=1)
|
|
latest_tag=$(git describe --tags "${latest_tag_commit}")
|
|
git checkout "${latest_tag}"
|
|
pip install -U flit
|
|
flit install
|
|
|
|
PYTHONPATH=./docs/src pytest
|