Skip to content

Commit

Permalink
test: Add .runsettings files for configuring required environment var…
Browse files Browse the repository at this point in the history
…iables for tests
  • Loading branch information
Chris Cameron committed Sep 29, 2021
1 parent f1ec90d commit 43f4ca5
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Client.Core.Test/.runsettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<EnvironmentVariables>
<!-- InfluxDB 1.8+ -->
<INFLUXDB_IP>localhost</INFLUXDB_IP>
<INFLUXDB_PORT_API>8086</INFLUXDB_PORT_API>
<!-- InfluxDB 2 -->
<INFLUXDB_2_IP>localhost</INFLUXDB_2_IP>
<INFLUXDB_2_PORT>9999</INFLUXDB_2_PORT>
</EnvironmentVariables>
</RunSettings>
11 changes: 11 additions & 0 deletions Client.Legacy.Test/.runsettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<EnvironmentVariables>
<!-- InfluxDB 1.8+ -->
<INFLUXDB_IP>localhost</INFLUXDB_IP>
<INFLUXDB_PORT_API>8086</INFLUXDB_PORT_API>
<!-- InfluxDB 2 -->
<INFLUXDB_2_IP>localhost</INFLUXDB_2_IP>
<INFLUXDB_2_PORT>9999</INFLUXDB_2_PORT>
</EnvironmentVariables>
</RunSettings>
11 changes: 11 additions & 0 deletions Client.Linq.Test/.runsettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<EnvironmentVariables>
<!-- InfluxDB 1.8+ -->
<INFLUXDB_IP>localhost</INFLUXDB_IP>
<INFLUXDB_PORT_API>8086</INFLUXDB_PORT_API>
<!-- InfluxDB 2 -->
<INFLUXDB_2_IP>localhost</INFLUXDB_2_IP>
<INFLUXDB_2_PORT>9999</INFLUXDB_2_PORT>
</EnvironmentVariables>
</RunSettings>
11 changes: 11 additions & 0 deletions Client.Test/.runsettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<EnvironmentVariables>
<!-- InfluxDB 1.8+ -->
<INFLUXDB_IP>localhost</INFLUXDB_IP>
<INFLUXDB_PORT_API>8086</INFLUXDB_PORT_API>
<!-- InfluxDB 2 -->
<INFLUXDB_2_IP>localhost</INFLUXDB_2_IP>
<INFLUXDB_2_PORT>9999</INFLUXDB_2_PORT>
</EnvironmentVariables>
</RunSettings>

0 comments on commit 43f4ca5

Please sign in to comment.