Commit 56fa916e authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

tweaks

parent 265b525e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
MIT License

Copyright (c) 2022 CSST-L1
Copyright (c) 2022 CSST

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

Makefile

0 → 100644
+17 −0
Original line number Diff line number Diff line
export PKG=csst_common

clean:
	rm -rf build dist $(PKG).egg-info
	rm -rf .coverage .pytest_cache

install: clean
	pip install .
	rm -rf build dist $(PKG).egg-info

uninstall:
	pip uninstall $(PKG) -y

test:
	coverage run -m  pytest . --import-mode=importlib --cov-report=html --cov-report=term-missing
	coverage report -m
	rm -rf .coverage .pytest_cache