标签: python testing automated-tests
有没有办法在修改导入的模块时运行python脚本?
这对于测试自动化目的非常有用。
答案 0 :(得分:0)
您可以散列lib并将值存储在磁盘上的某个位置,如:
import hashlib with open(hashlib.__file__, "r") as r: value=hashlib.md5(r.read()) # do compare here and store the value on disk