nspcc-dev / neofs-dev-env

NeoFS local Development and Testing environment
https://fs.neo.org
GNU General Public License v3.0
9 stars 25 forks source link

Add .env.int_test files for config amendments #167

Closed EliChin closed 2 years ago

EliChin commented 2 years ago

For executing GAS Emission test we need to set env var NEOFS_IR_EMIT_GAS_BALANCE_THRESHOLD inside IR container, which can be done through amendments in an .env file only. In order not to amend existing .env files, it was decided to create separate files of this kind (.env.int_test) for each service. They are empty by default and always cleared during make clean. Also make clean fixed to clean all services, not only $(START_SVCS).

Signed-off-by: Elizaveta Chichindaeva elizaveta@nspcc.ru

alexvanin commented 2 years ago

How do you want to set values in .env.int_test? I expected separate make command for that, but it might be a bit of overhead for your purposes.

Also .int_test.env naming sounds better for me. At least it explicitly declares that it is env file by having .env postfix.