mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-14 13:40:55 +00:00
* python->python-legacy, python-experimental->python * test with openjdk8 * test with openjdk11 * comment out rm * move kotlin tests to circleci * move kotlin tests * move tests to circleci * fix circleci * rearrange test * move tests * use wrapper Co-authored-by: Justin Black <justin.a.black@gmail.com>
22 lines
393 B
Makefile
22 lines
393 B
Makefile
#!/bin/bash
|
|
|
|
REQUIREMENTS_FILE=dev-requirements.txt
|
|
REQUIREMENTS_OUT=dev-requirements.txt.log
|
|
SETUP_OUT=*.egg-info
|
|
VENV=.venv
|
|
|
|
clean:
|
|
rm -rf $(REQUIREMENTS_OUT)
|
|
rm -rf $(SETUP_OUT)
|
|
rm -rf $(VENV)
|
|
rm -rf .tox
|
|
rm -rf .coverage
|
|
find . -name "*.py[oc]" -delete
|
|
find . -name "__pycache__" -delete
|
|
|
|
test: clean
|
|
bash ./test_python2.sh
|
|
|
|
test-all: clean
|
|
bash ./test_python2_and_3.sh
|