一个计算机技术爱好者与学习者

0%

pytest简介

The pytest framework makes it easy to write small, readable tests, and can scale to support complex functional testing for applications and libraries.

pytest是一种卓越的Python测试框架,它提供了简单、高效的方式来编写可以扩展的测试用例。

本文学习pytest的测试用例写法,内容整理自 chatgpt gpt-4-0613 。

相关文档:

阅读全文 »

Git LFS 简介

Git LFS: An open source Git extension for versioning large files
Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.

Git LFS (Large File Storage)是一个开源的Git大文件版本控制的解决方案和工具集,工具自身是基于Golang进行实现,并在Github上开源。原理上是通过对Git客户端进行扩展的方式,从而集成并兼容了原生的Git客户端。Git LFS良好的设计,让用户感觉在对大文件处理过程中,与普通Git的使用方式上没有任何差别,也就是说,在使用方式上Git LFS对用户是完全透明的。

参考文档:

阅读全文 »