Skip to content

Commit

Permalink
0.1.11: add build
Browse files Browse the repository at this point in the history
  • Loading branch information
tamarinvs19 committed Aug 14, 2023
1 parent 5d46110 commit c8e1462
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.jar filter=lfs diff=lfs merge=lfs -text
utfuzz_build/utfuzz.tar.gz filter=lfs diff=lfs merge=lfs -text
36 changes: 21 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
# utfuzz

`utfuzz` is a Python fuzzing engine. It supports fuzzing of Python code and generation reproducing code for error and regression suites.
`utfuzz` is a Python fuzzing engine. It supports fuzzing of Python code and generation reproducing code for error and regression suites.

### Installation

`utfuzz` supports Python versions 3.8-3.11

You can install it from source code:
```shell
$ python -m pip install git+https://github.com/tamarinvs19/utfuzz
```

or

```shell
$ git clone https://github.com/tamarinvs19/utfuzz
$ cd utfuzz
$ python -m pip install -e ./
```
You can use one of these ways:
1. Install from package archive:
- download [utfuzz.tar.gz](https://github.com/tamarinvs19/utfuzz/raw/master/utfuzz_build/utfuzz.tar.gz?download=)
- run
`
python -m pip install utfuzz.tar.gz
`

2. Install from GitHub (if you have [`lfs`](https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-git-large-file-storage)):
```shell
python -m pip install git+https://github.com/tamarinvs19/utfuzz
```
3. Install from source code (if you have [`lfs`](https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-git-large-file-storage))
```shell
git clone https://github.com/tamarinvs19/utfuzz
cd utfuzz
python -m pip install -e ./
```

To run `utfuzz` you can use module `python -m utfuzz` or command `utfuzz` with active python environment.

Expand All @@ -35,11 +41,11 @@ To run `utfuzz` you can use module `python -m utfuzz` or command `utfuzz` with a
To run:
```shell
$ python -m utfuzz
python -m utfuzz
```
or
```shell
$ utfuzz
utfuzz
```
You can use `utfuzz` one of three modes:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "utfuzz"
version = "0.1.10"
version = "0.1.11"
description = ""
authors = ["Vyacheslav Tamarin <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion utfuzz/requirements_managers/python_requirements_manger.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def project_requirements_install(self, custom_requirements: typing.Optional[path
out = subprocess.check_output(
[sys.executable, "-m", "pip", "install", "-r", custom_requirements],
stderr=subprocess.STDOUT)
logging.info(out)
logging.info(out)

def check_python(self) -> bool:
version = sys.version_info
Expand Down
3 changes: 3 additions & 0 deletions utfuzz_build/utfuzz.tar.gz
Git LFS file not shown

0 comments on commit c8e1462

Please sign in to comment.