Upgrade to Pro — share decks privately, control downloads, hide ads and more …

使い捨てAPIテストのすすめ

izumix03
February 09, 2024

 使い捨てAPIテストのすすめ

izumix03

February 09, 2024
Tweet

Other Decks in Business

Transcript

  1. 3 泉川 貴洋 / いずみかわ たかひろ 所属 DeNA SOMPO Mobility

    グロース本部プロダクト開発部 担当 Anyca サーバサイドエンジニア 出⾝ ⾹川県 家族構成 妻と2歳の娘の3⼈家族 @izumix0303
  2. Pythonに変換 Makefileの例 Pythonに変換しながら Pytestを実⾏ NOTEBOOKS:=$(shell find src/test -name "*.ipynb") PYS:=$(NOTEBOOKS:.ipynb=.py)

    .PHONY: convert convert: $(PYS) %.py: %.ipynb $(VENV)/jupyter nbconvert --to python $< .PHONY: test test: convert $(VENV)/pytest -vv ./src/test/**/*.py include Makefile.venv